Files
MP-SPDZ/Protocols/MAC_Check_Base.h
Marcel Keller 4ef6b6d873 Maintenance.
2020-05-08 21:43:05 +10:00

55 lines
1.6 KiB
C++

/*
* MAC_Check_Base.h
*
*/
#ifndef PROTOCOLS_MAC_CHECK_BASE_H_
#define PROTOCOLS_MAC_CHECK_BASE_H_
#include <vector>
using namespace std;
#include "Networking/Player.h"
#include "Tools/PointerVector.h"
template<class T>
class MAC_Check_Base
{
protected:
/* MAC Share */
typename T::mac_key_type::Scalar alphai;
PointerVector<T> secrets;
PointerVector<typename T::open_type> values;
public:
int values_opened;
MAC_Check_Base() : values_opened(0) {}
virtual ~MAC_Check_Base() {}
virtual void Check(const Player& P) { (void)P; }
int number() const { return values_opened; }
const typename T::mac_key_type::Scalar& get_alphai() const { return alphai; }
virtual void POpen_Begin(vector<typename T::open_type>& values,const vector<T>& S,const Player& P);
virtual void POpen_End(vector<typename T::open_type>& values,const vector<T>& S,const Player& P);
virtual void POpen(vector<typename T::open_type>& values,const vector<T>& S,const Player& P);
typename T::open_type POpen(const T& secret, const Player& P);
// alternative name to avoid conflict
typename T::open_type open(const T& secret, const Player& P) { return POpen(secret, P); }
virtual void init_open(const Player& P, int n = 0);
virtual void prepare_open(const T& secret);
virtual void exchange(const Player& P) = 0;
virtual typename T::open_type finalize_open();
virtual void CheckFor(const typename T::open_type& value, const vector<T>& shares, const Player& P);
virtual const Player& get_check_player(const Player& P) const { return P; }
};
#endif /* PROTOCOLS_MAC_CHECK_BASE_H_ */