Files
MP-SPDZ/Machines/ccd-party.cpp
2021-07-02 15:50:34 +10:00

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);
}