mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-15 00:18:17 -05:00
15 lines
236 B
C++
15 lines
236 B
C++
/*
|
|
* ValueInterface.cpp
|
|
*
|
|
*/
|
|
|
|
#include "ValueInterface.h"
|
|
#include "gf2n.h"
|
|
#include "Setup.h"
|
|
|
|
void ValueInterface::read_setup(int nparties, int lg2p, int gf2ndegree)
|
|
{
|
|
(void) nparties, (void) lg2p;
|
|
init_gf2n(gf2ndegree);
|
|
}
|