mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-08 21:18:03 -05:00
16 lines
263 B
C++
16 lines
263 B
C++
/*
|
|
* Player-Online.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Processor/config.h"
|
|
#include "Protocols/Share.h"
|
|
|
|
#include "Player-Online.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
ez::ezOptionParser opt;
|
|
return spdz_main<Share<gfp>, Share<gf2n>>(argc, argv, opt, false);
|
|
}
|