mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 13:37:58 -05:00
13 lines
213 B
C++
13 lines
213 B
C++
/*
|
|
* malicious-rep-bin-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "GC/ReplicatedParty.h"
|
|
#include "GC/MaliciousRepSecret.h"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
GC::ReplicatedParty<GC::MaliciousRepSecret>(argc, argv);
|
|
}
|