Home
last modified time | relevance | path

Searched refs:auth_cryptPassword (Results 1 – 4 of 4) sorted by relevance

/dokuwiki/_test/tests/inc/
Dauth_password.test.php52 auth_cryptPassword('foo' . $method, $method, 'abcdefgh12345678912345678912345678')
72 $hash = auth_cryptPassword('foo' . $method, $method);
82 $hash = auth_cryptPassword(null, $method);
87 $hash = auth_cryptPassword('foobcrypt', 'bcrypt');
/dokuwiki/lib/plugins/authplain/
Dauth.php72 auth_cryptPassword('dummy'); // run a crypt op to prevent timing attacks
153 $pass = auth_cryptPassword($pwd);
209 if ($field == 'pass') $value = auth_cryptPassword($value);
/dokuwiki/lib/plugins/authpdo/
Dauth.php127 auth_cryptPassword('dummy'); // run a crypt op to prevent timing attacks
134 $userdata['hash'] = auth_cryptPassword($pass);
212 $hash = auth_cryptPassword($clear);
281 $params['hash'] = auth_cryptPassword($changes['pass']);
/dokuwiki/inc/
Dauth.php1339 function auth_cryptPassword($clear, $method = '', $salt = null) function