예제 #1
0
void square128::randomize(PRNG& G)
{
    G.get_octets((octet*)&rows, sizeof(rows));
}
예제 #2
0
파일: random.cpp 프로젝트: lance6716/SPDZ-2
void PRNG::SetSeed(PRNG& G)
{
  octet tmp[SEED_SIZE];
  G.get_octets(tmp, sizeof(tmp));
  SetSeed(tmp);
}