mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 05:57:57 -05:00
68 lines
1.5 KiB
C++
68 lines
1.5 KiB
C++
/*
|
|
* SemiPrep.cpp
|
|
*
|
|
*/
|
|
|
|
#include "SemiPrep.h"
|
|
#include "ThreadMaster.h"
|
|
#include "OT/NPartyTripleGenerator.h"
|
|
#include "OT/BitDiagonal.h"
|
|
|
|
#include "Protocols/ReplicatedPrep.hpp"
|
|
#include "Protocols/MAC_Check_Base.hpp"
|
|
#include "Protocols/Replicated.hpp"
|
|
#include "OT/NPartyTripleGenerator.hpp"
|
|
|
|
namespace GC
|
|
{
|
|
|
|
SemiPrep::SemiPrep(DataPositions& usage, bool) :
|
|
BufferPrep<SemiSecret>(usage), triple_generator(0)
|
|
{
|
|
}
|
|
|
|
void SemiPrep::set_protocol(Beaver<SemiSecret>& protocol)
|
|
{
|
|
if (triple_generator)
|
|
{
|
|
assert(&triple_generator->get_player() == &protocol.P);
|
|
return;
|
|
}
|
|
|
|
(void) protocol;
|
|
params.set_passive();
|
|
triple_generator = new SemiSecret::TripleGenerator(
|
|
BaseMachine::fresh_ot_setup(protocol.P),
|
|
protocol.P.N, -1, OnlineOptions::singleton.batch_size,
|
|
1, params, {}, &protocol.P);
|
|
triple_generator->multi_threaded = false;
|
|
}
|
|
|
|
void SemiPrep::buffer_triples()
|
|
{
|
|
assert(this->triple_generator);
|
|
this->triple_generator->generatePlainTriples();
|
|
for (auto& x : this->triple_generator->plainTriples)
|
|
{
|
|
this->triples.push_back({{x[0], x[1], x[2]}});
|
|
}
|
|
this->triple_generator->unlock();
|
|
}
|
|
|
|
SemiPrep::~SemiPrep()
|
|
{
|
|
if (triple_generator)
|
|
delete triple_generator;
|
|
}
|
|
|
|
void SemiPrep::buffer_bits()
|
|
{
|
|
word r = secure_prng.get_word();
|
|
for (size_t i = 0; i < sizeof(word) * 8; i++)
|
|
{
|
|
this->bits.push_back((r >> i) & 1);
|
|
}
|
|
}
|
|
|
|
} /* namespace GC */
|