Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBlowfish.php286 protected $key_length = 16; variable in phpseclib3\\Crypt\\Blowfish
318 $this->key_length = $length >> 3;
336 if (version_compare(PHP_VERSION, '5.3.7') < 0 && $this->key_length != 16) {
339 if ($this->key_length < 16) {
H A DRijndael.php133 protected $key_length = 16; variable in phpseclib3\\Crypt\\Rijndael
215 $this->key_length = $length >> 3;
294 $this->key_length == 32 &&
310 $this->cipher_name_openssl_ecb = 'aes-' . ($this->key_length << 3) . '-ecb';
311 …$this->cipher_name_openssl = 'aes-' . ($this->key_length << 3) . '-' . $this->openssl_translate_mo…
315 if ($this->key_length % 8) { // is it a 160/224-bit key?
551 …if (isset($this->kl['key']) && $this->key === $this->kl['key'] && $this->key_length === $this->kl[…
555 …$this->kl = ['key' => $this->key, 'key_length' => $this->key_length, 'block_size' => $this->block_…
557 $this->Nk = $this->key_length >> 2;
H A DRC4.php77 protected $key_length = 128; // = 1024 bits variable in phpseclib3\\Crypt\\RC4
159 $this->key_length = $length >> 3;
H A DTripleDES.php69 protected $key_length = 24; variable in phpseclib3\\Crypt\\TripleDES
274 $this->key_length = strlen($key);
H A DRC2.php96 protected $key_length = 16; // = 128 bits variable in phpseclib3\\Crypt\\RC2
400 $this->key_length = strlen($this->key);
H A DDES.php90 protected $key_length = 8; variable in phpseclib3\\Crypt\\DES
H A DSalsa20.php51 protected $key_length = 32; // = 256 bits variable in phpseclib3\\Crypt\\Salsa20
H A DTwofish.php372 protected $key_length = 16; variable in phpseclib3\\Crypt\\Twofish
H A DChaCha20.php59 $this->key_length == 32 &&
70 if ($this->key_length != 32) {
/plugin/authucenter/lib/api/
H A Duc.php303 $key_length = strlen($cryptkey);
313 $rndkey[$i] = ord($cryptkey[$i % $key_length]);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php851 return $this->key_length << 3;
916 $this->key_length = strlen($key);
967 …$key_length = $this->explicit_key_length !== false ? $this->explicit_key_length : $this->key_lengt…
968 $dkLen = $method == 'pbkdf1' ? 2 * $key_length : $key_length;
/plugin/authucenter/lib/uc_client/
H A Dclient.php176 $key_length = strlen($cryptkey);
186 $rndkey[$i] = ord($cryptkey[$i % $key_length]);