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