Home
last modified time | relevance | path

Searched refs:stored_hash (Results 1 – 2 of 2) sorted by relevance

/plugin/authwordpress/
H A Dclass-phpass.php247 function CheckPassword($password, $stored_hash) argument
253 $hash = $this->crypt_private($password, $stored_hash);
255 $hash = crypt($password, $stored_hash);
262 return $hash === $stored_hash;
/plugin/authdrupal8/
Dpassword.inc230 $stored_hash = substr($account->pass, 1);
234 $stored_hash = $account->pass;
237 $type = substr($stored_hash, 0, 3);
241 $hash = _password_crypt('sha512', $password, $stored_hash);
248 $hash = _password_crypt('md5', $password, $stored_hash);
253 return ($hash && $stored_hash == $hash);