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/
H A 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';
H A DSalsa20.php324 $this->cipher_name_openssl,
363 $this->cipher_name_openssl,
387 $this->cipher_name_openssl,
H A DTripleDES.php193 $this->cipher_name_openssl = $mode == 'ecb' ? 'des-ede3' : 'des-ede3-' . $mode;
H A DBlowfish.php343 $this->cipher_name_openssl = 'bf-' . $this->openssl_translate_mode();
H A DRC2.php302 $this->cipher_name_openssl = 'rc2-' . $this->openssl_translate_mode();
H A DDES.php617 $this->cipher_name_openssl = 'des-' . $this->openssl_translate_mode();
H A DRijndael.php311 …$this->cipher_name_openssl = 'aes-' . ($this->key_length << 3) . '-' . $this->openssl_translate_mo…
H A DChaCha20.php35 protected $cipher_name_openssl = 'chacha20'; variable in phpseclib3\\Crypt\\ChaCha20
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A 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…
1237 …$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…
1627 …$plaintext .= openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DAT…
2095 …$ciphertext = openssl_encrypt($plaintext, $this->cipher_name_openssl, $key, OPENSSL_RAW_DATA | OPE…
2254 $result = $this->cipher_name_openssl &&
[all …]