1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Cryptographic random number generators (CRNG). mod types; pub use self::types::Random; mod yarrow; pub use self::yarrow::Yarrow; #[cfg(test)] mod tests; #[cfg(test)] pub use self::tests::TestRandom; #[cfg(test)] pub use self::tests::NotRandom;