mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
28 lines
612 B
C++
28 lines
612 B
C++
/*
|
|
* malicious-rep-bin-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "GC/ShareParty.h"
|
|
#include "GC/ShareParty.hpp"
|
|
#include "GC/ShareSecret.hpp"
|
|
#include "GC/MaliciousRepSecret.h"
|
|
|
|
#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 "Processor/Machine.hpp"
|
|
#include "Processor/Instruction.hpp"
|
|
#include "Protocols/MaliciousRepMC.hpp"
|
|
#include "Protocols/MAC_Check_Base.hpp"
|
|
#include "Protocols/Beaver.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
GC::ShareParty<GC::MaliciousRepSecret>(argc, argv);
|
|
}
|