mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 13:37:58 -05:00
31 lines
811 B
C++
31 lines
811 B
C++
/*
|
|
* dealer-ring-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Protocols/DealerShare.h"
|
|
#include "Protocols/DealerInput.h"
|
|
#include "Protocols/Dealer.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/DealerMatrixPrep.hpp"
|
|
#include "Protocols/Beaver.hpp"
|
|
#include "Protocols/SemiInput.hpp"
|
|
#include "Protocols/MAC_Check_Base.hpp"
|
|
#include "Protocols/ReplicatedPrep.hpp"
|
|
#include "Protocols/MalRepRingPrep.hpp"
|
|
#include "Protocols/SemiMC.hpp"
|
|
#include "GC/DealerPrep.h"
|
|
#include "GC/SemiPrep.h"
|
|
#include "GC/SemiSecret.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
HonestMajorityRingMachine<DealerRingShare, DealerShare>(argc, argv, 0);
|
|
}
|