crypto::pbkdf2

Function pbkdf2_check

Source
pub fn pbkdf2_check(
    password: &str,
    hashed_value: &str,
) -> Result<bool, &'static str>
Expand description

pbkdf2_check compares a password against the result of a previous call to pbkdf2_simple and returns true if the passed in password hashes to the same value.

ยงArguments

  • password - The password to process as a str
  • hashed_value - A string representing a hashed password returned by pbkdf2_simple()