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