Struct botan::RandomNumberGenerator[][src]

pub struct RandomNumberGenerator { /* fields omitted */ }

A cryptographic random number generator

Methods

impl RandomNumberGenerator
[src]

Create a new userspace RNG object

Examples

let userspace_rng = botan::RandomNumberGenerator::new_userspace().unwrap();

Create a new reference to the system PRNG

Examples

let system_rng = botan::RandomNumberGenerator::new_system().unwrap();

Create a new reference to an RNG of some arbitrary type

Examples

let a_rng = botan::RandomNumberGenerator::new().unwrap();

Read bytes from an RNG

Examples

let rng = botan::RandomNumberGenerator::new().unwrap();
let output = rng.read(32).unwrap();
assert_eq!(output.len(), 32);

Store bytes from the RNG into the passed slice

Examples

let rng = botan::RandomNumberGenerator::new().unwrap();
let mut output = vec![0; 32];
rng.fill(&mut output).unwrap();

Attempt to reseed the RNG by unspecified means

Examples

let rng = botan::RandomNumberGenerator::new().unwrap();
rng.reseed(256).unwrap();

Attempt to reseed the RNG by getting data from source RNG

Examples

let system_rng = botan::RandomNumberGenerator::new_system().unwrap();
let rng = botan::RandomNumberGenerator::new_userspace().unwrap();
rng.reseed_from_rng(&system_rng, 256).unwrap();

Add some seed material to the RNG

Examples

let rng = botan::RandomNumberGenerator::new_userspace().unwrap();
let my_seed = vec![0x42, 0x6F, 0x62];
rng.add_entropy(&my_seed);

Trait Implementations

impl Debug for RandomNumberGenerator
[src]

Formats the value using the given formatter. Read more

impl Drop for RandomNumberGenerator
[src]

Executes the destructor for this type. Read more

Auto Trait Implementations