Trait ring::rand::SecureRandom[][src]

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