Struct rand::os::OsRng [] [src]

pub struct OsRng(_);

A random number generator that retrieves randomness straight from the operating system.

Platform sources:

This usually does not block. On some systems (e.g. FreeBSD, OpenBSD, Max OS X, and modern Linux) this may block very early in the init process, if the CSPRNG has not been seeded yet.[1]

[1] See https://www.python.org/dev/peps/pep-0524/ for a more in-depth discussion.

Methods

impl OsRng
[src]

[src]

Create a new OsRng.

Trait Implementations

impl Debug for OsRng
[src]

[src]

Formats the value using the given formatter. Read more

impl Rng for OsRng
[src]

[src]

Return the next random u32. Read more

[src]

Return the next random u64. Read more

[src]

Fill dest with random data. Read more

[src]

Fill dest entirely with random data. Read more

[src]

Return the next random f32 selected from the half-open interval [0, 1). Read more

[src]

Return the next random f64 selected from the half-open interval [0, 1). Read more