pub trait CryptoRngCore: CryptoRng + RngCore { }
Expand description

An object-safe RNG trait that requires a cryptographically strong random number generator.

Implementors§

source§

impl<T> CryptoRngCore for T
where T: CryptoRng + RngCore + ?Sized,