mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
15 lines
288 B
C++
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);
|
|
}
|