mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 14:08:09 -05:00
17 lines
361 B
C++
17 lines
361 B
C++
/*
|
|
* lowgear-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Protocols/LowGearShare.h"
|
|
|
|
#include "SPDZ.hpp"
|
|
#include "Protocols/CowGearPrep.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
ez::ezOptionParser opt;
|
|
CowGearOptions::singleton = CowGearOptions(opt, argc, argv, false);
|
|
DishonestMajorityFieldMachine<LowGearShare, LowGearShare, gf2n_short>(argc, argv, opt);
|
|
}
|