[][src]Struct devolutions_crypto::password_hash::PasswordHash

pub struct PasswordHash { /* fields omitted */ }

A versionned password hash. Can be used to validate a password without storing the password.

Methods

impl PasswordHash[src]

pub fn verify_password(&self, password: &[u8]) -> bool[src]

Verify if the PasswordHash matches with the specified password. Should execute in constant time.

Arguments

  • password - The password to verify.

Returns

Returns true if the password matches and false if it doesn't.

Example

use devolutions_crypto::password_hash::{hash_password, PasswordHashVersion};

let password = b"somesuperstrongpa$$w0rd!";

let hashed_password = hash_password(password, 10000, PasswordHashVersion::Latest);
assert!(hashed_password.verify_password(b"somesuperstrongpa$$w0rd!"));
assert!(!hashed_password.verify_password(b"someweakpa$$w0rd!"));

Trait Implementations

impl Clone for PasswordHash[src]

impl Debug for PasswordHash[src]

impl From<PasswordHash> for Vec<u8>[src]

fn from(data: PasswordHash) -> Self[src]

Serialize the structure into a Vec<u8>, for storage, transmission or use in another language.

impl HeaderType for PasswordHash[src]

type Version = PasswordHashVersion

type Subtype = PasswordHashSubtype

impl<'_> TryFrom<&'_ [u8]> for PasswordHash[src]

type Error = Error

The type returned in the event of a conversion error.

fn try_from(data: &[u8]) -> Result<Self, Error>[src]

Parses the data. Can return an Error of the data is invalid or unrecognized.

Auto Trait Implementations

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> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,