[][src]Struct nanorand::rand::chacha::ChaCha

pub struct ChaCha { /* fields omitted */ }

An instance of the ChaCha random number generator.
Seeded from the system entropy generator when available.
This generator is theoretically cryptographically secure.

Implementations

impl ChaCha[src]

pub fn new(rounds: u8) -> Self[src]

Create a new ChaCha instance, seeding from the system's default source of entropy.

pub fn new_key(rounds: u8, key: [u8; 32], nonce: [u8; 16]) -> Self[src]

Create a new ChaCha instance, using the provided key and nonce.

Trait Implementations

impl Clone for ChaCha[src]

impl Default for ChaCha[src]

impl Display for ChaCha[src]

impl RNG for ChaCha[src]

type Output = [u8; 64]

The byte output that this RNG emits.

impl Zeroize for ChaCha[src]

Auto Trait Implementations

impl RefUnwindSafe for ChaCha

impl Send for ChaCha

impl Sync for ChaCha

impl Unpin for ChaCha

impl UnwindSafe for ChaCha

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<Z> Zeroize for Z where
    Z: DefaultIsZeroes
[src]