Files
MP-SPDZ/Protocols/SemiPrep.h
2019-06-07 15:26:28 +10:00

22 lines
373 B
C++

/*
* SemiPrep.h
*
*/
#ifndef PROTOCOLS_SEMIPREP_H_
#define PROTOCOLS_SEMIPREP_H_
#include "MascotPrep.h"
template<class T>
class SemiPrep : public virtual OTPrep<T>, public virtual SemiHonestRingPrep<T>
{
public:
SemiPrep(SubProcessor<T>* proc, DataPositions& usage);
void buffer_triples();
void buffer_inverses();
};
#endif /* PROTOCOLS_SEMIPREP_H_ */