pub trait Prg<const BLEN: usize, const BLEN_N: usize>: Sync {
// Required method
fn gen(&self, seed: &[u8; BLEN]) -> [([[u8; BLEN]; BLEN_N], bool); 2];
}Expand description
Pseudorandom generator (PRG).
Requires Sync for multi-threading.
We still require it for single-threading since it should be still easy to be included.