Home
last modified time | relevance | path

Searched refs:key_length (Results 1 – 10 of 10) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRC4.php70 protected $key_length = 128; // = 1024 bits variable in phpseclib3\\Crypt\\RC4
137 $this->key_length = $length >> 3;
H A DRijndael.php124 protected $key_length = 16; variable in phpseclib3\\Crypt\\Rijndael
200 $this->key_length = $length >> 3;
276 $this->key_length == 32 &&
292 $this->cipher_name_openssl_ecb = 'aes-' . ($this->key_length << 3) . '-ecb';
293 …$this->cipher_name_openssl = 'aes-' . ($this->key_length << 3) . '-' . $this->openssl_translate_mo…
297 if ($this->key_length % 8) { // is it a 160/224-bit key?
534 …if (isset($this->kl['key']) && $this->key === $this->kl['key'] && $this->key_length === $this->kl[…
538 …$this->kl = ['key' => $this->key, 'key_length' => $this->key_length, 'block_size' => $this->block_…
540 $this->Nk = $this->key_length >> 2;
H A DTripleDES.php64 protected $key_length = 24; variable in phpseclib3\\Crypt\\TripleDES
259 $this->key_length = strlen($key);
H A DRC2.php79 protected $key_length = 16; // = 128 bits variable in phpseclib3\\Crypt\\RC2
377 $this->key_length = strlen($this->key);
H A DBlowfish.php331 protected $key_length = 16; variable in phpseclib3\\Crypt\\Blowfish
361 $this->key_length = $length >> 3;
378 if ($this->key_length < 16) {
H A DDES.php82 protected $key_length = 8; variable in phpseclib3\\Crypt\\DES
H A DSalsa20.php47 protected $key_length = 32; // = 256 bits variable in phpseclib3\\Crypt\\Salsa20
H A DTwofish.php353 protected $key_length = 16; variable in phpseclib3\\Crypt\\Twofish
H A DChaCha20.php54 $this->key_length == 32 &&
65 if ($this->key_length != 32) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php839 return $this->key_length << 3;
900 $this->key_length = strlen($key);
941 $keylen = isset($func_args[2]) ? $func_args[2] : $this->key_length;
971 …$key_length = $this->explicit_key_length !== false ? $this->explicit_key_length : $this->key_lengt…
972 $dkLen = $method == 'pbkdf1' ? 2 * $key_length : $key_length;