mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 13:37:58 -05:00
233 lines
5.1 KiB
C++
233 lines
5.1 KiB
C++
/*
|
|
* TinySecret.h
|
|
*
|
|
*/
|
|
|
|
#ifndef GC_TINYSECRET_H_
|
|
#define GC_TINYSECRET_H_
|
|
|
|
#include "Secret.h"
|
|
#include "TinyShare.h"
|
|
#include "ShareParty.h"
|
|
#include "OT/Rectangle.h"
|
|
#include "OT/BitDiagonal.h"
|
|
|
|
template<class T> class NPartyTripleGenerator;
|
|
template<class T> class OTTripleGenerator;
|
|
template<class T> class TinyMultiplier;
|
|
|
|
namespace GC
|
|
{
|
|
|
|
template<class T> class TinyOnlyPrep;
|
|
template<class T> class TinyMC;
|
|
|
|
template<class T>
|
|
class VectorSecret : public Secret<T>
|
|
{
|
|
typedef VectorSecret This;
|
|
|
|
public:
|
|
typedef T part_type;
|
|
typedef Secret<part_type> super;
|
|
|
|
typedef typename part_type::mac_key_type mac_key_type;
|
|
|
|
typedef BitVec open_type;
|
|
typedef BitVec clear;
|
|
|
|
typedef typename part_type::sacri_type sacri_type;
|
|
typedef typename part_type::mac_type mac_type;
|
|
typedef BitDiagonal Rectangle;
|
|
|
|
typedef typename T::super check_type;
|
|
|
|
static const bool dishonest_majority = T::dishonest_majority;
|
|
static const bool variable_players = T::variable_players;
|
|
static const bool needs_ot = true;
|
|
static const bool expensive_triples = false;
|
|
|
|
static const int default_length = 64;
|
|
|
|
static DataFieldType field_type()
|
|
{
|
|
return BitVec::field_type();
|
|
}
|
|
|
|
static int size()
|
|
{
|
|
return part_type::size() * default_length;
|
|
}
|
|
|
|
template<class U>
|
|
static void generate_mac_key(mac_key_type&, const U&)
|
|
{
|
|
}
|
|
|
|
template<class U>
|
|
static void reveal_inst(U& processor, const vector<int>& args)
|
|
{
|
|
T::reveal_inst(processor, args);
|
|
}
|
|
|
|
static This constant(BitVec other, int my_num, mac_key_type alphai)
|
|
{
|
|
This res;
|
|
res.resize_regs(other.length());
|
|
for (int i = 0; i < other.length(); i++)
|
|
res.get_reg(i) = part_type::constant(other.get_bit(i), my_num, alphai);
|
|
return res;
|
|
}
|
|
|
|
VectorSecret()
|
|
{
|
|
}
|
|
VectorSecret(const super& other) :
|
|
super(other)
|
|
{
|
|
}
|
|
VectorSecret(const Clear& other) :
|
|
super(other)
|
|
{
|
|
}
|
|
VectorSecret(const part_type& other)
|
|
{
|
|
this->get_regs().push_back(other);
|
|
}
|
|
|
|
void assign(const char* buffer)
|
|
{
|
|
this->resize_regs(default_length);
|
|
for (int i = 0; i < default_length; i++)
|
|
this->get_reg(i).assign(buffer + i * part_type::size());
|
|
}
|
|
|
|
This operator-(const This& other) const
|
|
{
|
|
return *this + other;
|
|
}
|
|
|
|
This& operator^=(const This& other)
|
|
{
|
|
return *this = *this + other;
|
|
}
|
|
|
|
This operator*(const BitVec& other) const
|
|
{
|
|
This res = *this;
|
|
for (int i = 0; i < super::size(); i++)
|
|
if (not other.get_bit(i))
|
|
res.get_reg(i) = {};
|
|
return res;
|
|
}
|
|
|
|
This operator&(const BitVec::super& other) const
|
|
{
|
|
return *this * BitVec(other);
|
|
}
|
|
|
|
This extend_bit() const
|
|
{
|
|
This res;
|
|
res.get_regs().resize(BitVec::N_BITS, this->get_reg(0));
|
|
return res;
|
|
}
|
|
|
|
This mask(int n_bits) const
|
|
{
|
|
This res = *this;
|
|
res.get_regs().resize(n_bits);
|
|
return res;
|
|
}
|
|
|
|
T get_bit(int i) const
|
|
{
|
|
return this->get_reg(i);
|
|
}
|
|
|
|
void output(ostream& s, bool human = true) const
|
|
{
|
|
assert(this->get_regs().size() == default_length);
|
|
for (auto& reg : this->get_regs())
|
|
reg.output(s, human);
|
|
}
|
|
};
|
|
|
|
template<int S>
|
|
class TinySecret : public VectorSecret<TinyShare<S>>
|
|
{
|
|
typedef VectorSecret<TinyShare<S>> super;
|
|
typedef TinySecret This;
|
|
|
|
public:
|
|
typedef TinyMC<This> MC;
|
|
typedef MC MAC_Check;
|
|
typedef Beaver<This> Protocol;
|
|
typedef ::Input<This> Input;
|
|
typedef TinyOnlyPrep<This> LivePrep;
|
|
typedef Memory<This> DynamicMemory;
|
|
|
|
typedef OTTripleGenerator<This> TripleGenerator;
|
|
typedef typename super::part_type::TripleGenerator InputGenerator;
|
|
|
|
typedef TinyMultiplier<This> Multiplier;
|
|
|
|
static string type_short()
|
|
{
|
|
return "T";
|
|
}
|
|
|
|
static MC* new_mc(typename super::mac_key_type mac_key)
|
|
{
|
|
return new MC(mac_key);
|
|
}
|
|
|
|
static void store_clear_in_dynamic(Memory<This>& mem,
|
|
const vector<ClearWriteAccess>& accesses)
|
|
{
|
|
auto& party = ShareThread<This>::s();
|
|
for (auto access : accesses)
|
|
mem[access.address] = super::constant(access.value,
|
|
party.P->my_num(), {});
|
|
}
|
|
|
|
static void generate_mac_key(typename This::mac_key_type& dest,
|
|
const typename This::mac_key_type& source)
|
|
{
|
|
dest = source;
|
|
}
|
|
|
|
TinySecret()
|
|
{
|
|
}
|
|
TinySecret(const super& other) :
|
|
super(other)
|
|
{
|
|
}
|
|
TinySecret(const typename super::part_type& other) :
|
|
super(other)
|
|
{
|
|
}
|
|
|
|
void reveal(size_t n_bits, Clear& x)
|
|
{
|
|
auto& to_open = *this;
|
|
to_open.resize_regs(n_bits);
|
|
auto& party = ShareThread<This>::s();
|
|
x = party.MC->POpen(to_open, *party.P);
|
|
}
|
|
};
|
|
|
|
template<class U>
|
|
const int VectorSecret<U>::default_length;
|
|
|
|
template<class T>
|
|
inline VectorSecret<T> operator*(const BitVec& clear, const VectorSecret<T>& share)
|
|
{
|
|
return share * clear;
|
|
}
|
|
|
|
} /* namespace GC */
|
|
|
|
#endif /* GC_TINYSECRET_H_ */
|