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