mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
16 lines
245 B
C++
16 lines
245 B
C++
/*
|
|
* semi-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Math/gfp.h"
|
|
#include "Math/SemiShare.h"
|
|
|
|
#include "Player-Online.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
ez::ezOptionParser opt;
|
|
spdz_main<SemiShare<gfp>, SemiShare<gf2n>>(argc, argv, opt);
|
|
}
|