mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 13:37:58 -05:00
16 lines
253 B
C++
16 lines
253 B
C++
/*
|
|
* real-bmr-party.cpp
|
|
*
|
|
*/
|
|
|
|
#define NO_MIXED_CIRCUITS
|
|
|
|
#include "BMR/RealProgramParty.hpp"
|
|
#include "Machines/SPDZ.hpp"
|
|
#include "Protocols/MascotPrep.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
RealProgramParty<Share<gf2n_long>>(argc, argv);
|
|
}
|