mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 05:57:57 -05:00
30 lines
691 B
C++
30 lines
691 B
C++
/*
|
|
* rep4-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Protocols/Rep4Share2k.h"
|
|
#include "Protocols/Rep4Share.h"
|
|
#include "Protocols/Rep4MC.h"
|
|
#include "Math/Z2k.h"
|
|
#include "Math/gf2n.h"
|
|
#include "Tools/ezOptionParser.h"
|
|
#include "GC/Rep4Secret.h"
|
|
#include "GC/Rep4Prep.h"
|
|
#include "Processor/RingOptions.h"
|
|
|
|
#include "Processor/RingMachine.hpp"
|
|
#include "Protocols/RepRingOnlyEdabitPrep.hpp"
|
|
#include "Protocols/Rep4Input.hpp"
|
|
#include "Protocols/Rep4Prep.hpp"
|
|
#include "Protocols/Rep4MC.hpp"
|
|
#include "Protocols/Rep4.hpp"
|
|
#include "GC/BitAdder.hpp"
|
|
#include "Math/Z2k.hpp"
|
|
#include "Rep.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
HonestMajorityRingMachine<Rep4Share2, Rep4Share>(argc, argv, 4);
|
|
}
|