mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
29 lines
501 B
C++
29 lines
501 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, Thread<SemiHonestRepSecret>& thread) :
|
|
RepPrep<SemiHonestRepSecret>(usage, thread)
|
|
{
|
|
}
|
|
|
|
void buffer_triples() { throw not_implemented(); }
|
|
};
|
|
|
|
} /* namespace GC */
|
|
|
|
#endif /* GC_SEMIHONESTREPPREP_H_ */
|