Home
last modified time | relevance | path

Searched refs:crypt (Results 1 – 5 of 5) sorted by relevance

/dokuwiki/_test/tests/inc/
H A Dauth_encryption.test.php22 $crypt = '837e9943623a34fe340e89024c28f4e9be13bbcacdd139801ef16a27bffa7714';
23 $this->assertEquals($plain, auth_decrypt(hex2bin($crypt), $secret));
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRC4.php172 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 DSalsa20.php246 $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 DPassHash.php188 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 Dauth.php1365 * @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);