crypto::scrypt

Function scrypt_check

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

scrypt_check compares a password against the result of a previous call to scrypt_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 scrypt_simple()