pub trait Prg<const LAMBDA: usize>: Sync { // Required method fn gen( &self, seed: &[u8; LAMBDA], ) -> [([u8; LAMBDA], [u8; LAMBDA], bool); 2]; }
Pseudorandom generator