mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
46 lines
1020 B
C++
46 lines
1020 B
C++
/*
|
|
* Beaver.h
|
|
*
|
|
*/
|
|
|
|
#ifndef PROTOCOLS_BEAVER_H_
|
|
#define PROTOCOLS_BEAVER_H_
|
|
|
|
#include <vector>
|
|
#include <array>
|
|
using namespace std;
|
|
|
|
#include "Replicated.h"
|
|
#include "Processor/Data_Files.h"
|
|
|
|
template<class T> class SubProcessor;
|
|
template<class T> class MAC_Check_Base;
|
|
class Player;
|
|
|
|
template<class T>
|
|
class Beaver : public ProtocolBase<T>
|
|
{
|
|
vector<T> shares;
|
|
vector<typename T::open_type> opened;
|
|
vector<array<T, 3>> triples;
|
|
typename vector<typename T::open_type>::iterator it;
|
|
typename vector<array<T, 3>>::iterator triple;
|
|
Preprocessing<T>* prep;
|
|
typename T::MAC_Check* MC;
|
|
|
|
public:
|
|
Player& P;
|
|
|
|
Beaver(Player& P) : prep(0), MC(0), P(P) {}
|
|
|
|
void init_mul(SubProcessor<T>* proc);
|
|
void init_mul(Preprocessing<T>& prep, typename T::MAC_Check& MC);
|
|
typename T::clear prepare_mul(const T& x, const T& y, int n = -1);
|
|
void exchange();
|
|
T finalize_mul(int n = -1);
|
|
|
|
int get_n_relevant_players() { return P.num_players(); }
|
|
};
|
|
|
|
#endif /* PROTOCOLS_BEAVER_H_ */
|