Files
MP-SPDZ/replicated-ring-party.cpp
2019-01-05 15:10:01 +01:00

15 lines
288 B
C++

/*
* replicated-ring-party.cpp
*
*/
#include "Processor/ReplicatedMachine.hpp"
#include "Math/Integer.h"
int main(int argc, const char** argv)
{
ez::ezOptionParser opt;
ReplicatedMachine<Rep3Share<Integer>, Rep3Share<gf2n>>(argc, argv,
"replicated-ring", opt);
}