mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
15 lines
282 B
C++
15 lines
282 B
C++
/*
|
|
* replicated-field-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Processor/ReplicatedMachine.hpp"
|
|
#include "Math/gfp.h"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
ez::ezOptionParser opt;
|
|
ReplicatedMachine<Rep3Share<gfp>, Rep3Share<gf2n>>(argc, argv,
|
|
"replicated-field", opt);
|
|
}
|