Expand description
Random number generation traits
This crate is mainly of interest to crates publishing implementations of
RngCore. Other users are encouraged to use the rand crate instead
which re-exports the main traits and error types.
RngCore is the core trait implemented by algorithmic pseudo-random number
generators and external random-number sources.
SeedableRng is an extension trait for construction from fixed seeds and
other random number generators.
The impls and le sub-modules include a few small functions to assist
implementation of RngCore.
Modules§
- The
BlockRngCoretrait and implementation helpers - Helper functions for implementing
RngCorefunctions. - Little-Endian utilities
Structs§
- Error type of
OsRng - An interface over the operating-system’s random data source
- Wrapper around
TryRngCoreimplementation which implementsRngCoreby panicking on potential errors. - Wrapper around
TryRngCoreimplementation which implementsRngCoreby panicking on potential errors.
Traits§
- A marker trait over
RngCorefor securely unpredictable RNGs - Implementation-level interface for RNGs
- A random number generator that can be explicitly seeded.
- A marker trait over
TryRngCorefor securely unpredictable RNGs - A potentially fallible variant of
RngCore