mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-05-13 03:00:24 -04:00
18 lines
264 B
C++
18 lines
264 B
C++
/*
|
|
* atlas-ecdsa-party.cpp
|
|
*
|
|
*/
|
|
|
|
#define NO_MIXED_CIRCUITS
|
|
|
|
#include "Machines/Atlas.hpp"
|
|
|
|
#include "hm-ecdsa-party.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
ez::ezOptionParser opt;
|
|
ShamirOptions(opt, argc, argv);
|
|
run<AtlasShare>(argc, argv);
|
|
}
|