Searched refs:key_length (Results 1 – 10 of 10) sorted by relevance
70 protected $key_length = 128; // = 1024 bits variable in phpseclib3\\Crypt\\RC4137 $this->key_length = $length >> 3;
124 protected $key_length = 16; variable in phpseclib3\\Crypt\\Rijndael200 $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;
64 protected $key_length = 24; variable in phpseclib3\\Crypt\\TripleDES259 $this->key_length = strlen($key);
79 protected $key_length = 16; // = 128 bits variable in phpseclib3\\Crypt\\RC2377 $this->key_length = strlen($this->key);
331 protected $key_length = 16; variable in phpseclib3\\Crypt\\Blowfish361 $this->key_length = $length >> 3;378 if ($this->key_length < 16) {
82 protected $key_length = 8; variable in phpseclib3\\Crypt\\DES
47 protected $key_length = 32; // = 256 bits variable in phpseclib3\\Crypt\\Salsa20
353 protected $key_length = 16; variable in phpseclib3\\Crypt\\Twofish
54 $this->key_length == 32 &&65 if ($this->key_length != 32) {
839 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;