#![deny(unsafe_code)]
#![deny(missing_docs)]
#![deny(clippy::unwrap_used)]
#![deny(clippy::panic)]
pub mod csprng;
pub mod entropy_tests;
pub use csprng::*;
pub use entropy_tests::{
frequency_test, repetition_test, run_entropy_health_tests, run_entropy_health_tests_on_bytes,
};