mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
17 lines
376 B
C++
17 lines
376 B
C++
/*
|
|
* ps-rep-field-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Protocols/PostSacriRepFieldShare.h"
|
|
#include "Protocols/ReplicatedMachine.hpp"
|
|
#include "Machines/Rep.hpp"
|
|
#include "Protocols/PostSacrifice.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
ez::ezOptionParser opt;
|
|
ReplicatedMachine<PostSacriRepFieldShare<gfp>, PostSacriRepFieldShare<gf2n>>(
|
|
argc, argv, opt);
|
|
}
|