mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 13:37:58 -05:00
41 lines
530 B
C++
41 lines
530 B
C++
/*
|
|
* SpdzWire.h
|
|
*
|
|
*/
|
|
|
|
#ifndef BMR_SPDZWIRE_H_
|
|
#define BMR_SPDZWIRE_H_
|
|
|
|
#include "Protocols/Share.h"
|
|
#include "Key.h"
|
|
|
|
template<class T>
|
|
class DualWire
|
|
{
|
|
public:
|
|
T mask;
|
|
Key my_keys[2];
|
|
|
|
DualWire()
|
|
{
|
|
my_keys[0] = 0;
|
|
my_keys[1] = 0;
|
|
}
|
|
|
|
void pack(octetStream& os) const
|
|
{
|
|
mask.pack(os);
|
|
os.serialize(my_keys);
|
|
}
|
|
void unpack(octetStream& os, size_t wanted_size)
|
|
{
|
|
(void)wanted_size;
|
|
mask.unpack(os);
|
|
os.unserialize(my_keys);
|
|
}
|
|
};
|
|
|
|
typedef DualWire<Share<gf2n_long>> SpdzWire;
|
|
|
|
#endif /* BMR_SPDZWIRE_H_ */
|