Module rand::reseeding [−][src]
A wrapper around another RNG that reseeds it after it generates a certain number of random bytes.
Re-exports
use core::default::Default; |
use Rng; |
use SeedableRng; |
Structs
ReseedWithDefault |
Reseed an RNG using a |
ReseedingRng |
A wrapper around any RNG which reseeds the underlying RNG after it has generated a certain number of random bytes. |
Constants
DEFAULT_GENERATION_THRESHOLD |
How many bytes of entropy the underling RNG is allowed to generate before it is reseeded |
Traits
Reseeder |
Something that can be used to reseed an RNG via |