mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-08 21:18:03 -05:00
18 lines
440 B
C++
18 lines
440 B
C++
|
|
#include "GC/TinierSecret.h"
|
|
#include "GC/Semi.h"
|
|
#include "GC/SemiPrep.h"
|
|
|
|
#include "Semi.hpp"
|
|
#include "Math/gfp.hpp"
|
|
#include "Processor/FieldMachine.hpp"
|
|
#include "Processor/OfflineMachine.hpp"
|
|
#include "Protocols/MascotPrep.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
ez::ezOptionParser opt;
|
|
DishonestMajorityFieldMachine<SemiShare, SemiShare, gf2n,
|
|
OfflineMachine<DishonestMajorityMachine>>(argc, argv, opt);
|
|
}
|