Function crypto::scrypt::scrypt_check [] [src]

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

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()