mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-08 21:18:03 -05:00
25 lines
526 B
C++
25 lines
526 B
C++
/*
|
|
* ccd-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "GC/CcdSecret.h"
|
|
#include "GC/TinyMC.h"
|
|
#include "GC/CcdPrep.h"
|
|
#include "GC/VectorInput.h"
|
|
|
|
#include "GC/ShareParty.hpp"
|
|
#include "GC/ShareSecret.hpp"
|
|
#include "GC/ThreadMaster.hpp"
|
|
#include "GC/Secret.hpp"
|
|
#include "GC/CcdPrep.hpp"
|
|
#include "Machines/ShamirMachine.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
gf2n_short::init_field(40);
|
|
ez::ezOptionParser opt;
|
|
ShamirOptions::singleton = {opt, argc, argv};
|
|
GC::ShareParty<GC::CcdSecret<gf2n_short>>(argc, argv, opt);
|
|
}
|