mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
39 lines
1008 B
C++
39 lines
1008 B
C++
/*
|
|
* temi-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Protocols/TemiShare.h"
|
|
#include "Math/gfp.h"
|
|
#include "Math/gf2n.h"
|
|
#include "FHE/P2Data.h"
|
|
#include "Tools/ezOptionParser.h"
|
|
#include "GC/SemiSecret.h"
|
|
#include "GC/SemiPrep.h"
|
|
|
|
#include "Processor/FieldMachine.hpp"
|
|
#include "Protocols/TemiPrep.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/SemiMC.hpp"
|
|
#include "Protocols/Beaver.hpp"
|
|
#include "Protocols/MalRepRingPrep.hpp"
|
|
#include "Protocols/Hemi.hpp"
|
|
#include "GC/ShareSecret.hpp"
|
|
#include "GC/SemiHonestRepPrep.h"
|
|
#include "GC/SemiSecret.hpp"
|
|
#include "Math/gfp.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
ez::ezOptionParser opt;
|
|
HemiOptions::singleton = {opt, argc, argv};
|
|
DishonestMajorityFieldMachine<TemiShare, TemiShare, gf2n_short>(argc, argv,
|
|
opt);
|
|
}
|