mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-05-13 03:00:24 -04:00
20 lines
418 B
C++
20 lines
418 B
C++
/*
|
|
* mascot-offline.cpp
|
|
*
|
|
*/
|
|
|
|
#include "GC/TinierSecret.h"
|
|
|
|
#include "SPDZ.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<Share, Share, gf2n,
|
|
OfflineMachine<DishonestMajorityMachine>>(argc, argv, opt);
|
|
}
|