mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
22 lines
327 B
C++
22 lines
327 B
C++
/*
|
|
* SemiPrep.h
|
|
*
|
|
*/
|
|
|
|
#ifndef PROCESSOR_SEMIPREP_H_
|
|
#define PROCESSOR_SEMIPREP_H_
|
|
|
|
#include "MascotPrep.h"
|
|
|
|
template<class T>
|
|
class SemiPrep : public OTPrep<T>
|
|
{
|
|
public:
|
|
SemiPrep(SubProcessor<T>* proc, DataPositions& usage);
|
|
|
|
void buffer_triples();
|
|
void buffer_inverses();
|
|
};
|
|
|
|
#endif /* PROCESSOR_SEMIPREP_H_ */
|