mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 13:37:58 -05:00
30 lines
721 B
C++
30 lines
721 B
C++
/*
|
|
* hemi-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Protocols/HemiShare.h"
|
|
#include "Math/gfp.h"
|
|
#include "Math/gf2n.h"
|
|
#include "FHE/P2Data.h"
|
|
#include "Tools/ezOptionParser.h"
|
|
|
|
#include "Player-Online.hpp"
|
|
#include "Protocols/HemiPrep.hpp"
|
|
#include "Processor/Data_Files.hpp"
|
|
#include "Processor/Instruction.hpp"
|
|
#include "Processor/Machine.hpp"
|
|
#include "Protocols/SemiPrep.hpp"
|
|
#include "Protocols/SemiInput.hpp"
|
|
#include "Protocols/MAC_Check_Base.hpp"
|
|
#include "Protocols/MAC_Check.hpp"
|
|
#include "Protocols/fake-stuff.hpp"
|
|
#include "Protocols/SemiMC.hpp"
|
|
#include "Protocols/Beaver.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
ez::ezOptionParser opt;
|
|
spdz_main<HemiShare<gfp>, HemiShare<gf2n_short>>(argc, argv, opt);
|
|
}
|