Home
last modified time | relevance | path

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

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DOpenSSH.php93 list($salt, $rounds) = Strings::unpackSSH2('sN', $kdfoptions);
97 $crypto->setPassword($password, 'bcrypt', $salt, $rounds, 32);
210 $rounds = isset($options['rounds']) ? $options['rounds'] : 16;
212 $kdfoptions = Strings::packSSH2('sN', $salt, $rounds);
214 $crypto->setPassword($password, 'bcrypt', $salt, $rounds, 32);
/dokuwiki/inc/
H A DPassHash.php730 $rounds = null;
732 $rounds = $opts['rounds'];
741 if (empty($rounds)) {
744 return crypt($clear, '$' . $prefix . '$' . $rounds . '$' . $salt . '$');
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBlowfish.php496 * @param int $rounds
500 public static function bcrypt_pbkdf($pass, $salt, $keylen, $rounds) argument
515 for ($i = 1; $i < $rounds; $i++) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php940 $rounds = isset($func_args[1]) ? $func_args[1] : 16;
943 … $key = Blowfish::bcrypt_pbkdf($password, $salt, $keylen + $this->block_size, $rounds);