Searched refs:crypt (Results 1 – 5 of 5) sorted by relevance
| /dokuwiki/_test/tests/inc/ |
| H A D | auth_encryption.test.php | 22 $crypt = '837e9943623a34fe340e89024c28f4e9be13bbcacdd139801ef16a27bffa7714'; 23 $this->assertEquals($plain, auth_decrypt(hex2bin($crypt), $secret));
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
| H A D | RC4.php | 172 return $this->crypt($plaintext, self::ENCRYPT); 191 return $this->crypt($ciphertext, self::DECRYPT); 249 private function crypt($text, $mode) function in phpseclib3\\Crypt\\RC4
|
| H A D | Salsa20.php | 246 $ciphertext = $this->crypt($plaintext, self::ENCRYPT); 278 return $this->crypt($ciphertext, self::DECRYPT); 310 private function crypt($text, $mode) function in phpseclib3\\Crypt\\Salsa20
|
| /dokuwiki/inc/ |
| H A D | PassHash.php | 188 return crypt($clear, '$1$' . $salt . '$'); 317 return crypt($clear, $salt); 688 return crypt($clear, $salt); 742 return crypt($clear, '$' . $prefix . '$' . $salt . '$'); 744 return crypt($clear, '$' . $prefix . '$' . $rounds . '$' . $salt . '$');
|
| H A D | auth.php | 1365 * @param string $crypt The hash to compare with 1371 function auth_verifyPassword($clear, $crypt) argument 1373 if ($crypt === DOKU_UNUSABLE_PASSWORD) { 1378 return $pass->verify_hash($clear, $crypt);
|