[][src]Struct mundane::password::scrypt::ScryptHash

#[must_use]
pub struct ScryptHash { /* fields omitted */ }

The output of the scrypt password hashing function.

Methods

impl ScryptHash[src]

#[must_use] pub fn new(hash: [u8; 32], salt: [u8; 32], N: u64, r: u64, p: u64) -> ScryptHash[src]

Constructs a new ScryptHash.

#[must_use] pub fn hash(&self) -> &[u8; 32][src]

Gets the hash.

#[must_use] pub fn salt(&self) -> &[u8; 32][src]

Gets the salt.

#[must_use] pub fn params(&self) -> ScryptParams[src]

Gets the params.

Trait Implementations

impl Clone for ScryptHash[src]

impl Copy for ScryptHash[src]

impl Debug for ScryptHash[src]

Auto Trait Implementations

impl Send for ScryptHash

impl Unpin for ScryptHash

impl Sync for ScryptHash

impl RefUnwindSafe for ScryptHash

impl UnwindSafe for ScryptHash

Blanket Implementations

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> From<T> for T[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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