Searched refs:cipher_name_openssl (Results 1 – 9 of 9) sorted by relevance
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
D | RC4.php | 123 $this->cipher_name_openssl = 'rc4-40'; 127 $this->cipher_name_openssl = 'rc4-40'; 130 $this->cipher_name_openssl = 'rc4-64'; 133 $this->cipher_name_openssl = 'rc4';
|
D | Salsa20.php | 324 $this->cipher_name_openssl, 363 $this->cipher_name_openssl, 387 $this->cipher_name_openssl,
|
D | TripleDES.php | 193 $this->cipher_name_openssl = $mode == 'ecb' ? 'des-ede3' : 'des-ede3-' . $mode;
|
D | Blowfish.php | 343 $this->cipher_name_openssl = 'bf-' . $this->openssl_translate_mode();
|
D | RC2.php | 302 $this->cipher_name_openssl = 'rc2-' . $this->openssl_translate_mode();
|
D | DES.php | 617 $this->cipher_name_openssl = 'des-' . $this->openssl_translate_mode();
|
D | Rijndael.php | 311 …$this->cipher_name_openssl = 'aes-' . ($this->key_length << 3) . '-' . $this->openssl_translate_mo…
|
D | ChaCha20.php | 35 protected $cipher_name_openssl = 'chacha20'; variable in phpseclib3\\Crypt\\ChaCha20
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/ |
D | SymmetricKey.php | 475 protected $cipher_name_openssl; variable in phpseclib3\\Crypt\\Common\\SymmetricKey 1183 …return openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA | OPEN… 1185 …return openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA | OPEN… 1187 …$result = openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA | O… 1228 …text, 0, -$overflow) . str_repeat("\0", $this->block_size), $this->cipher_name_openssl, $this->key… 1237 …$ciphertext = openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA… 1243 …$ciphertext = openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA… 1571 …$plaintext = openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA… 1574 …$plaintext = openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA… 1578 …$plaintext = openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA… [all …]
|