mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
17 lines
317 B
C++
17 lines
317 B
C++
/*
|
|
* Player-Online.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Processor/config.h"
|
|
#include "Protocols/Share.h"
|
|
#include "GC/TinierSecret.h"
|
|
#include "Math/gfp.hpp"
|
|
#include "Processor/FieldMachine.h"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
ez::ezOptionParser opt;
|
|
DishonestMajorityFieldMachine<Share>(argc, argv, opt, false);
|
|
}
|