mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 14:08:09 -05:00
23 lines
518 B
C++
23 lines
518 B
C++
/*
|
|
* dealer-ring-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Protocols/DealerShare.h"
|
|
#include "Protocols/DealerInput.h"
|
|
|
|
#include "Processor/RingMachine.hpp"
|
|
#include "Processor/Machine.hpp"
|
|
#include "Protocols/Replicated.hpp"
|
|
#include "Protocols/DealerPrep.hpp"
|
|
#include "Protocols/DealerInput.hpp"
|
|
#include "Protocols/DealerMC.hpp"
|
|
#include "Protocols/Beaver.hpp"
|
|
#include "Semi.hpp"
|
|
#include "GC/DealerPrep.h"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
HonestMajorityRingMachine<DealerRingShare, DealerShare>(argc, argv, 0);
|
|
}
|