mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 05:57:57 -05:00
40 lines
836 B
C++
40 lines
836 B
C++
/*
|
|
* SPDZ.hpp
|
|
*
|
|
*/
|
|
|
|
#ifndef MACHINES_SPDZ_HPP_
|
|
#define MACHINES_SPDZ_HPP_
|
|
|
|
#include "Protocols/MAC_Check.h"
|
|
#include "Protocols/SPDZ.h"
|
|
|
|
#include "Processor/Data_Files.hpp"
|
|
#include "Processor/Instruction.hpp"
|
|
#include "Processor/Machine.hpp"
|
|
#include "Processor/FieldMachine.hpp"
|
|
|
|
#include "Protocols/MAC_Check.hpp"
|
|
#include "Protocols/fake-stuff.hpp"
|
|
#include "Protocols/Beaver.hpp"
|
|
#include "Protocols/Share.hpp"
|
|
#include "Protocols/ReplicatedPrep.hpp"
|
|
#include "Protocols/Spdz2kPrep.hpp"
|
|
|
|
#include "GC/TinierSecret.h"
|
|
#include "GC/TinyMC.h"
|
|
#include "GC/VectorInput.h"
|
|
#include "GC/VectorProtocol.h"
|
|
|
|
#include "GC/ShareParty.h"
|
|
#include "GC/Secret.hpp"
|
|
#include "GC/ShareSecret.h"
|
|
#include "GC/TinierSharePrep.h"
|
|
#include "GC/CcdPrep.h"
|
|
|
|
#include "GC/VectorProtocol.hpp"
|
|
|
|
#include "Math/gfp.hpp"
|
|
|
|
#endif /* MACHINES_SPDZ_HPP_ */
|