Trait crypto_bigint::prelude::Random[][src]

pub trait Random: Sized {
    fn random(rng: impl CryptoRng + RngCore) -> Self;
}
This is supported on crate feature rand_core only.
Expand description

Random number generation support.

Required methods

Generate a cryptographically secure random value.

Implementors