Home
last modified time | relevance | path

Searched refs:crypt (Results 1 – 2 of 2) sorted by path

/dokuwiki/inc/
H A DPassHash.php113 $method = 'crypt';
117 //crypt and compare
170 * available in crypt()
174 * @link http://php.net/manual/en/function.crypt.php#73619
185 return crypt($clear, '$1$' . $salt . '$');
217 * @link http://php.net/manual/en/function.crypt.php#73619
303 * Password hashing method 'crypt'
305 * Uses salted crypt hashs. Salt is 2 bytes long.
314 return crypt($clear, $salt);
661 * if the needed crypt suppor
[all...]
H A Dauth.php1321 msg("Unsupported crypt method $method", -1);
1332 * @param string $crypt The hash to compare with
1338 function auth_verifyPassword($clear, $crypt)
1341 return $pass->verify_hash($clear, $crypt);
1233 auth_verifyPassword($clear, $crypt) global() argument