mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-05-13 03:00:24 -04:00
26 lines
422 B
C++
26 lines
422 B
C++
/*
|
|
* fake-spdz-ecdsa-party.cpp
|
|
*
|
|
*/
|
|
|
|
#define NO_MIXED_CIRCUITS
|
|
|
|
#define NO_SECURITY_CHECK
|
|
|
|
#include "GC/TinierSecret.h"
|
|
#include "GC/TinyMC.h"
|
|
#include "GC/VectorInput.h"
|
|
|
|
#include "Protocols/Share.hpp"
|
|
#include "Protocols/MAC_Check.hpp"
|
|
#include "GC/Secret.hpp"
|
|
#include "GC/TinierSharePrep.hpp"
|
|
#include "ot-ecdsa-party.hpp"
|
|
|
|
#include <assert.h>
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
run<Share>(argc, argv);
|
|
}
|