Home
last modified time | relevance | path

Searched refs:key_length (Results 1 – 9 of 9) sorted by last modified time

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDES.php82 protected $key_length = 8;
85 var $key_length = 8; global() variable in phpseclib\\Crypt\\DES
H A DRijndael.php72 * Mcrypt is useable for 128/192/256-bit $block_size/$key_length. For 160/224 not.
74 * or not for the current $block_size/$key_length.
117 * because the encryption / decryption / key schedule creation requires this number and not $key_length. We could
118 * derive this from $key_length or vice versa, but that'd mean we'd have to do multiple shift operations, so in lieu
124 protected $key_length = 16;
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_mode();
297 if ($this->key_length
134 var $key_length = 16; global() variable in phpseclib\\Crypt\\Rijndael
[all...]
H A DTwofish.php353 protected $key_length = 16;
369 var $key_length = 16; global() variable in phpseclib\\Crypt\\Twofish
H A DAES.php
H A DBase.php
H A DBlowfish.php345 * because the encryption / decryption / key schedule creation requires this number and not $key_length. We could
346 * derive this from $key_length or vice versa, but that'd mean we'd have to do multiple shift operations, so in lieu
352 protected $key_length = 16;
382 $this->key_length = $length >> 3;
399 if ($this->key_length < 16) {
374 var $key_length = 16; global() variable in phpseclib\\Crypt\\Blowfish
H A DRC2.php79 protected $key_length = 16; // = 128 bits
377 $this->key_length = strlen($this->key);
93 var $key_length = 16; // = 128 bits global() variable in phpseclib\\Crypt\\RC2
H A DRC4.php70 protected $key_length = 128; // = 1024 bits
137 $this->key_length = $length >> 3;
83 var $key_length = 128; // = 1024 bits global() variable in phpseclib\\Crypt\\RC4
H A DTripleDES.php64 protected $key_length = 24;
259 $this->key_length = strlen($key);
69 var $key_length = 24; global() variable in phpseclib\\Crypt\\TripleDES