Searched refs:checkPass (Results 1 – 11 of 11) sorted by relevance
| /dokuwiki/lib/plugins/authpdo/_test/ |
| H A D | sqlite.test.php | 120 $this->assertFalse($auth->checkPass('nobody', 'nope')); 121 $this->assertFalse($auth->checkPass('admin', 'nope')); 122 $this->assertTrue($auth->checkPass('admin', 'password')); 126 $this->assertFalse($auth->checkPass('admin', 'password')); 127 $this->assertFalse($auth->checkPass('user', md5('password'))); 155 $this->assertTrue($auth->checkPass('tester','secret'));
|
| H A D | mysql.test.php | 171 $this->assertTrue($auth->checkPass($user['user'], $user['pass']), $info); 213 $this->assertTrue($auth->checkPass($user['user'], $newpass), $info);
|
| /dokuwiki/_test/mock/ |
| H A D | AuthDeletePlugin.php | 16 public function checkPass($user, $pass) { function in dokuwiki\\test\\mock\\AuthDeletePlugin
|
| /dokuwiki/lib/plugins/authplain/_test/ |
| H A D | escaping.test.php | 47 $this->assertTrue($this->auth->checkPass("mwuser", "12345")); 88 $this->assertTrue($this->auth->checkPass("testuser", $user['pass']));
|
| /dokuwiki/inc/Extension/ |
| H A D | AuthPlugin.php | 231 public function checkPass($user, $pass) function in dokuwiki\\Extension\\AuthPlugin
|
| /dokuwiki/lib/plugins/authldap/ |
| H A D | auth.php | 59 public function checkPass($user, $pass) function in auth_plugin_authldap 184 $this->checkPass($loginuser, $loginpass);
|
| /dokuwiki/inc/ |
| H A D | auth.php | 310 if (!empty($pass) && $auth->checkPass($user, $pass)) { 1124 if (!$auth->checkPass($INPUT->server->str('REMOTE_USER'), $INPUT->post->str('oldpass'))) { 1180 if (!$auth->checkPass($INPUT->server->str('REMOTE_USER'), $INPUT->post->str('oldpass'))) {
|
| /dokuwiki/lib/plugins/authplain/ |
| H A D | auth.php | 68 public function checkPass($user, $pass) function in auth_plugin_authplain
|
| /dokuwiki/lib/plugins/authad/ |
| H A D | auth.php | 159 public function checkPass($user, $pass) function in auth_plugin_authad
|
| /dokuwiki/lib/plugins/authpdo/ |
| H A D | auth.php | 122 public function checkPass($user, $pass) function in auth_plugin_authpdo
|
| /dokuwiki/conf/ |
| H A D | mysql.conf.php.example | 66 $conf['plugin']['authmysql']['checkPass'] = "SELECT pass
|