mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 05:57:57 -05:00
22 lines
389 B
C++
22 lines
389 B
C++
/*
|
|
* fake-spdz-ecdsa-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "GC/SemiSecret.h"
|
|
#include "GC/SemiPrep.h"
|
|
|
|
#include "Protocols/SemiMC.hpp"
|
|
#include "Protocols/SemiPrep.hpp"
|
|
#include "Protocols/SemiInput.hpp"
|
|
#include "Protocols/MAC_Check_Base.hpp"
|
|
#include "GC/SemiSecret.hpp"
|
|
#include "ot-ecdsa-party.hpp"
|
|
|
|
#include <assert.h>
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
run<SemiShare>(argc, argv);
|
|
}
|