mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 05:57:57 -05:00
14 lines
212 B
C++
14 lines
212 B
C++
/*
|
|
* mal-rep-shamir-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Machines/Rep.hpp"
|
|
|
|
#include "BMR/RealProgramParty.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
RealProgramParty<MaliciousRep3Share<gf2n_long>>(argc, argv);
|
|
}
|