Searched refs:cipher_name_openssl (Results 1 – 9 of 9) sorted by relevance
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/ |
D | SymmetricKey.php | 441 protected $cipher_name_openssl; variable in phpseclib3\\Crypt\\Common\\SymmetricKey 1185 …return openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA | OPEN… 1187 …return openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA | OPEN… 1189 …$result = openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA | O… 1230 …text, 0, -$overflow) . str_repeat("\0", $this->block_size), $this->cipher_name_openssl, $this->key… 1239 …$ciphertext = openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA… 1245 …$ciphertext = openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA… 1572 …$plaintext = openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA… 1575 …$plaintext = openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA… 1579 …$plaintext = openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA… [all …]
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
D | Salsa20.php | 318 $this->cipher_name_openssl, 357 $this->cipher_name_openssl, 382 $this->cipher_name_openssl,
|
D | RC4.php | 117 $this->cipher_name_openssl = 'rc4-40';
|
D | TripleDES.php | 181 $this->cipher_name_openssl = $mode == 'ecb' ? 'des-ede3' : 'des-ede3-' . $mode;
|
D | RC2.php | 282 $this->cipher_name_openssl = 'rc2-' . $this->openssl_translate_mode();
|
D | DES.php | 604 $this->cipher_name_openssl = 'des-' . $this->openssl_translate_mode();
|
D | Rijndael.php | 293 …$this->cipher_name_openssl = 'aes-' . ($this->key_length << 3) . '-' . $this->openssl_translate_mo…
|
D | Blowfish.php | 388 $this->cipher_name_openssl = 'bf-' . $this->openssl_translate_mode();
|
D | ChaCha20.php | 31 protected $cipher_name_openssl = 'chacha20'; variable in phpseclib3\\Crypt\\ChaCha20
|