mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 05:57:57 -05:00
17 lines
354 B
C++
17 lines
354 B
C++
/*
|
|
* replicated-ring-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Protocols/Rep3Share2k.h"
|
|
#include "Protocols/ReplicatedPrep2k.h"
|
|
#include "Processor/RingOptions.h"
|
|
#include "Math/Integer.h"
|
|
#include "Machines/RepRing.hpp"
|
|
#include "Processor/RingMachine.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
HonestMajorityRingMachine<Rep3Share2, Rep3Share>(argc, argv);
|
|
}
|