1//! Deterministic Random Generator 2//! 3//! Produce pseudo random bytes in a stream like fashion 4 5#[cfg(feature = "chacha")] 6pub mod chacha;