mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
33 lines
739 B
C++
33 lines
739 B
C++
/*
|
|
* tinier-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "GC/TinierSecret.h"
|
|
#include "GC/TinierPrep.h"
|
|
#include "GC/ShareParty.h"
|
|
#include "GC/TinyMC.h"
|
|
|
|
#include "GC/ShareParty.hpp"
|
|
#include "GC/ShareSecret.hpp"
|
|
#include "GC/Instruction.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 "Processor/Instruction.hpp"
|
|
#include "Protocols/MAC_Check.hpp"
|
|
#include "Protocols/MAC_Check_Base.hpp"
|
|
#include "Protocols/Beaver.hpp"
|
|
#include "Protocols/MascotPrep.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
gf2n_short::init_field(40);
|
|
GC::ShareParty<GC::TinierSecret<gf2n_short>>(argc, argv, 1000);
|
|
}
|