Files
MP-SPDZ/GC/SemiHonestRepPrep.h
Marcel Keller 32950fe8d4 Maintenance.
2021-11-04 16:24:34 +11:00

29 lines
470 B
C++

/*
* ReplicatedPrep.h
*
*/
#ifndef GC_SEMIHONESTREPPREP_H_
#define GC_SEMIHONESTREPPREP_H_
#include "RepPrep.h"
#include "ShareSecret.h"
namespace GC
{
class SemiHonestRepPrep : public RepPrep<SemiHonestRepSecret>
{
public:
SemiHonestRepPrep(DataPositions& usage, bool = false) :
RepPrep<SemiHonestRepSecret>(usage)
{
}
void buffer_triples() { throw not_implemented(); }
};
} /* namespace GC */
#endif /* GC_SEMIHONESTREPPREP_H_ */