Searched refs:rounds (Results 1 – 4 of 4) sorted by relevance
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/ |
H A D | OpenSSH.php | 93 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 D | PassHash.php | 730 $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 D | Blowfish.php | 496 * @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 D | SymmetricKey.php | 940 $rounds = isset($func_args[1]) ? $func_args[1] : 16; 943 … $key = Blowfish::bcrypt_pbkdf($password, $salt, $keylen + $this->block_size, $rounds);
|