mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-05-13 03:00:24 -04:00
37 lines
914 B
C++
37 lines
914 B
C++
/*
|
|
* tinier-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "GC/TinierSecret.h"
|
|
#include "GC/ShareParty.h"
|
|
#include "GC/TinyMC.h"
|
|
#include "GC/VectorInput.h"
|
|
|
|
#include "GC/ShareParty.hpp"
|
|
#include "GC/ShareSecret.hpp"
|
|
#include "GC/Machine.hpp"
|
|
#include "GC/Processor.hpp"
|
|
#include "GC/Program.hpp"
|
|
#include "GC/Thread.hpp"
|
|
#include "GC/ThreadMaster.hpp"
|
|
#include "GC/Secret.hpp"
|
|
#include "GC/TinyPrep.hpp"
|
|
#include "GC/TinierSharePrep.hpp"
|
|
#include "GC/CcdPrep.hpp"
|
|
|
|
#include "Processor/Instruction.hpp"
|
|
#include "Protocols/MAC_Check.hpp"
|
|
#include "Protocols/MAC_Check_Base.hpp"
|
|
#include "Protocols/Beaver.hpp"
|
|
#include "Protocols/MascotPrep.hpp"
|
|
#include "Protocols/MalRepRingPrep.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
ez::ezOptionParser opt;
|
|
OnlineOptions opts(opt, argc, argv);
|
|
gf2n_mac_key::init_minimum(opts.security_parameter);
|
|
GC::simple_binary_main<GC::TinierSecret<gf2n_mac_key>>(argc, argv, 1000);
|
|
}
|