mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 13:37:58 -05:00
13 lines
160 B
C++
13 lines
160 B
C++
/*
|
|
* bmr-program-tparty.cpp
|
|
*
|
|
*/
|
|
|
|
#include "BMR/TrustedParty.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
TrustedProgramParty party(argc, argv);
|
|
party.Start();
|
|
}
|