mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
29 lines
621 B
C++
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);
|
|
}
|