pub trait SecureRandom: SecureRandom {
    fn fill(&self, dest: &mut [u8]) -> Result<(), Unspecified>;
}
Expand description

A secure random number generator.

Required Methods

Fills dest with random bytes.

Implementors