Home
last modified time | relevance | path

Searched refs:cipher_name_openssl (Results 1 – 9 of 9) sorted by relevance

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
DRC4.php123 $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';
DSalsa20.php324 $this->cipher_name_openssl,
363 $this->cipher_name_openssl,
387 $this->cipher_name_openssl,
DTripleDES.php193 $this->cipher_name_openssl = $mode == 'ecb' ? 'des-ede3' : 'des-ede3-' . $mode;
DBlowfish.php343 $this->cipher_name_openssl = 'bf-' . $this->openssl_translate_mode();
DRC2.php302 $this->cipher_name_openssl = 'rc2-' . $this->openssl_translate_mode();
DDES.php617 $this->cipher_name_openssl = 'des-' . $this->openssl_translate_mode();
DRijndael.php311 …$this->cipher_name_openssl = 'aes-' . ($this->key_length << 3) . '-' . $this->openssl_translate_mo…
DChaCha20.php35 protected $cipher_name_openssl = 'chacha20'; variable in phpseclib3\\Crypt\\ChaCha20
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
DSymmetricKey.php475 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 …]