Example #1
0
void square128::randomize(PRNG& G)
{
    G.get_octets((octet*)&rows, sizeof(rows));
}
Example #2
0
void PRNG::SetSeed(PRNG& G)
{
  octet tmp[SEED_SIZE];
  G.get_octets(tmp, sizeof(tmp));
  SetSeed(tmp);
}