mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-05-13 03:00:24 -04:00
29 lines
628 B
C++
29 lines
628 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/Thread.hpp"
|
|
#include "GC/ThreadMaster.hpp"
|
|
#include "GC/Processor.hpp"
|
|
#include "GC/SemiSecret.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::simple_binary_main<GC::SemiSecret>(argc, argv);
|
|
}
|