Files
MP-SPDZ/ECDSA/mascot-ecdsa-party.cpp
Marcel Keller e07d9bf2a3 Maintenance.
2022-01-11 16:05:26 +11:00

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