mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
21 lines
396 B
C++
21 lines
396 B
C++
/*
|
|
* mal-rep-ecdsa-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Protocols/Rep3Share.h"
|
|
|
|
#include "hm-ecdsa-party.hpp"
|
|
|
|
template<>
|
|
Preprocessing<Rep3Share<gfp>>* Preprocessing<Rep3Share<gfp>>::get_live_prep(
|
|
SubProcessor<Rep3Share<gfp>>* proc, DataPositions& usage)
|
|
{
|
|
return new ReplicatedPrep<Rep3Share<gfp>>(proc, usage);
|
|
}
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
run<Rep3Share>(argc, argv);
|
|
}
|