mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 13:37:58 -05:00
52 lines
1011 B
C++
52 lines
1011 B
C++
/*
|
|
* MaliciousRepPrep.h
|
|
*
|
|
*/
|
|
|
|
#ifndef GC_REPPREP_H_
|
|
#define GC_REPPREP_H_
|
|
|
|
#include "MaliciousRepSecret.h"
|
|
#include "ShiftableTripleBuffer.h"
|
|
#include "PersonalPrep.h"
|
|
#include "Protocols/ReplicatedPrep.h"
|
|
|
|
namespace GC
|
|
{
|
|
|
|
template<class T> class ShareThread;
|
|
|
|
template<class T>
|
|
class RepPrep : public PersonalPrep<T>, ShiftableTripleBuffer<T>
|
|
{
|
|
ReplicatedBase* protocol;
|
|
|
|
public:
|
|
RepPrep(DataPositions& usage, int input_player = PersonalPrep<T>::SECURE);
|
|
~RepPrep();
|
|
|
|
void set_protocol(typename T::Protocol& protocol);
|
|
|
|
void buffer_triples();
|
|
void buffer_bits();
|
|
|
|
void buffer_squares() { throw not_implemented(); }
|
|
void buffer_inverses() { throw not_implemented(); }
|
|
|
|
void buffer_inputs(int player);
|
|
|
|
void get(Dtype type, T* data)
|
|
{
|
|
BufferPrep<T>::get(type, data);
|
|
}
|
|
|
|
array<T, 3> get_triple_no_count(int n_bits)
|
|
{
|
|
return ShiftableTripleBuffer<T>::get_triple_no_count(n_bits);
|
|
}
|
|
};
|
|
|
|
} /* namespace GC */
|
|
|
|
#endif /* GC_REPPREP_H_ */
|