Crate reseeding_rng
ReseedingRng that periodically reseeds the underlying pseudorandom number
generator.
use ;
use ReseedingRng;
let mut rng = try_new
.expect;
println!;
This crate provides a simplified reimplementation of ReseedingRng for use with
the random number generators from the rand crate v0.10, which no longer
includes the ReseedingRng from v0.9 and earlier.
This crate is no_std-compatible unless the std_rng feature is enabled.
Cargo features
std_rng(optional) enablesStdReseedingRng, a newtype wrappingReseedingRng<StdRng, SysRng>with a default reseeding threshold of 64KiB.
License
Licensed under the Apache License, Version 2.0.