/// An `no-std` compatible entropy generator for Unix-like platforms, using libc's `rand` function.
pub use unix_libc as unix;
pub use entropy_from_system;
/// A 100% safe entropy generator, using (in order of priority) `/dev/urandom`,
/// `/dev/random`, or the system time.
pub use entropy_from_system;
/// An `no-std` compatible entropy generator for Windows, using WinAPI's `BCryptGenRandom` function.
pub use entropy_from_system;