Home
last modified time | relevance | path

Searched refs:auth_verifyPassword (Results 1 – 3 of 3) sorted by relevance

/dokuwiki/_test/tests/inc/
H A Dauth_password.test.php62 $this->assertTrue(auth_verifyPassword('foo' . $method, $hash));
63 $this->assertFalse(auth_verifyPassword('bar' . $method, $hash));
73 $this->assertTrue(auth_verifyPassword('foo' . $method, $hash));
83 $this->assertFalse(auth_verifyPassword(null, $hash));
88 $this->assertTrue(auth_verifyPassword('foobcrypt', $hash));
92 …$this->assertTrue(auth_verifyPassword('foobcrypt', '$2a$12$uTWercxbq4sjp2xAzv3we.ZOxk51m5V/Bv5bp2H…
93 …$this->assertTrue(auth_verifyPassword('lemmybcrypt12hash', '$2b$12$zMBuY6QAGXuT6elIbadavO1JTI6DfaG…
97 $this->assertTrue(auth_verifyPassword('foo', '$1$$n1rTiFE0nRifwV/43bVon/'));
101 $this->assertTrue(auth_verifyPassword('test12345', '$P$9IQRaTwmfeRo7ud9Fh4E2PdI0S3r.L0'));
102 $this->assertTrue(auth_verifyPassword('test12345', '$H$9IQRaTwmfeRo7ud9Fh4E2PdI0S3r.L0'));
[all …]
/dokuwiki/lib/plugins/authplain/
H A Dauth.php76 return auth_verifyPassword($pass, $this->users[$user]['pass']);
/dokuwiki/inc/
H A Dauth.php1370 function auth_verifyPassword($clear, $crypt) function