mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-05-13 03:00:24 -04:00
15 lines
223 B
C++
15 lines
223 B
C++
/*
|
|
* shamir-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Machines/ShamirMachine.h"
|
|
#include "Protocols/ShamirShare.h"
|
|
|
|
#include "ShamirMachine.hpp"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
ShamirMachineSpec<ShamirShare>(argc, argv);
|
|
}
|