Files
MP-SPDZ/Protocols/MamaPrep.h
Marcel Keller 6a424539c9 SoftSpokenOT.
2022-08-25 13:23:18 +10:00

27 lines
468 B
C++

/*
* MamaPrep.h
*
*/
#ifndef PROTOCOLS_MAMAPREP_H_
#define PROTOCOLS_MAMAPREP_H_
#include "MascotPrep.h"
/**
* MASCOT triple generation with multiple MACs
*/
template<class T>
class MamaPrep : public MascotInputPrep<T>, public MaliciousRingPrep<T>
{
public:
static void basic_setup(Player&) {};
static void teardown() {};
MamaPrep<T>(SubProcessor<T>* proc, DataPositions& usage);
void buffer_triples();
};
#endif /* PROTOCOLS_MAMAPREP_H_ */