mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 13:37:58 -05:00
20 lines
513 B
C++
20 lines
513 B
C++
|
|
#include "GC/TinierSecret.h"
|
|
#include "GC/Semi.h"
|
|
#include "GC/SemiPrep.h"
|
|
#include "Protocols/HemiShare.h"
|
|
|
|
#include "Semi.hpp"
|
|
#include "Math/gfp.hpp"
|
|
#include "Processor/FieldMachine.hpp"
|
|
#include "Processor/OfflineMachine.hpp"
|
|
#include "Protocols/MascotPrep.hpp"
|
|
#include "Protocols/HemiPrep.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
ez::ezOptionParser opt;
|
|
DishonestMajorityFieldMachine<HemiShare, HemiShare, gf2n_short,
|
|
OfflineMachine<DishonestMajorityMachine>>(argc, argv, opt);
|
|
}
|