mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-05-13 03:00:24 -04:00
14 lines
229 B
C++
14 lines
229 B
C++
/*
|
|
* replicated-field-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Math/gfp.hpp"
|
|
#include "Processor/FieldMachine.hpp"
|
|
#include "Machines/Rep.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
HonestMajorityFieldMachine<Rep3Share>(argc, argv);
|
|
}
|