[−][src]Struct devolutions_crypto::password_hash::PasswordHash
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]
fn clone(&self) -> PasswordHash[src]
fn clone_from(&mut self, source: &Self)1.0.0[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
fn data_type() -> DataType[src]
fn default_version() -> Self::Version[src]
fn subtype() -> Self::Subtype[src]
impl<'_> TryFrom<&'_ [u8]> for PasswordHash[src]
Auto Trait Implementations
impl RefUnwindSafe for PasswordHash
impl Send for PasswordHash
impl Sync for PasswordHash
impl Unpin for PasswordHash
impl UnwindSafe for PasswordHash
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,