Struct rand::isaac::Isaac64Rng
[−]
[src]
pub struct Isaac64Rng { // some fields omitted }
A random number generator that uses ISAAC-64[1], the 64-bit variant of the ISAAC algorithm.
The ISAAC algorithm is generally accepted as suitable for
cryptographic purposes, but this implementation has not be
verified as such. Prefer a generator like OsRng
that defers to
the operating system for cases that need high security.
[1]: Bob Jenkins, ISAAC: A fast cryptographic random number generator
Methods
impl Isaac64Rng
fn new_unseeded() -> Isaac64Rng
Create a 64-bit ISAAC random number generator using the default fixed seed.