mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-05-13 03:00:24 -04:00
19 lines
491 B
C++
19 lines
491 B
C++
/*
|
|
* mal-rep-ring-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Protocols/MalRepRingShare.h"
|
|
#include "Protocols/MalRepRingOptions.h"
|
|
#include "Processor/RingMachine.hpp"
|
|
#include "Processor/RingOptions.h"
|
|
#include "Machines/RepRing.hpp"
|
|
#include "Machines/MalRep.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
ez::ezOptionParser opt;
|
|
MalRepRingOptions::singleton = MalRepRingOptions(opt, argc, argv);
|
|
HonestMajorityRingMachineWithSecurity<MalRepRingShare, MaliciousRep3Share>(argc, argv, opt);
|
|
}
|