pub trait Random: Sized { // Required method fn random(rng: impl CryptoRng + RngCore) -> Self; }
Random number generation support.
Generate a cryptographically secure random value.