mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-05-13 03:00:24 -04:00
18 lines
318 B
C++
18 lines
318 B
C++
/*
|
|
* abfllnow-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "GC/PostSacriBin.h"
|
|
#include "GC/PostSacriSecret.h"
|
|
#include "GC/RepPrep.h"
|
|
|
|
#include "GC/ShareParty.hpp"
|
|
#include "GC/RepPrep.hpp"
|
|
#include "Protocols/MaliciousRepMC.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
GC::simple_binary_main<GC::PostSacriSecret>(argc, argv);
|
|
}
|