usecrate::{Buffer, CryptoResult};/// Provides functions dealing with cryptographic randomness
pubtraitCryptoRandom{/// Fill the output buffer with cryptographicly secure random bytes
fnrandombytes_buf<OutputBuffer: Buffer>(buffer:&mut OutputBuffer)->CryptoResult<()>;}