Files
MP-SPDZ/Machines/semi-bin-party.cpp

29 lines
621 B
C++

/*
* semi-bin-party.cpp
*
*/
#include "GC/ShareParty.h"
#include "GC/SemiSecret.h"
#include "GC/ShareParty.hpp"
#include "GC/ShareSecret.hpp"
#include "GC/Machine.hpp"
#include "GC/Program.hpp"
#include "GC/Instruction.hpp"
#include "GC/Thread.hpp"
#include "GC/ThreadMaster.hpp"
#include "GC/Processor.hpp"
#include "Protocols/MAC_Check_Base.hpp"
#include "Protocols/SemiMC.hpp"
#include "Protocols/SemiInput.hpp"
#include "Protocols/ReplicatedInput.hpp"
#include "Processor/Instruction.hpp"
#include "Processor/Input.hpp"
int main(int argc, const char** argv)
{
GC::ShareParty<GC::SemiSecret>(argc, argv);
}