Home
last modified time | relevance | path

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

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
DSymmetricKey.php441 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/
DSalsa20.php318 $this->cipher_name_openssl,
357 $this->cipher_name_openssl,
382 $this->cipher_name_openssl,
DRC4.php117 $this->cipher_name_openssl = 'rc4-40';
DTripleDES.php181 $this->cipher_name_openssl = $mode == 'ecb' ? 'des-ede3' : 'des-ede3-' . $mode;
DRC2.php282 $this->cipher_name_openssl = 'rc2-' . $this->openssl_translate_mode();
DDES.php604 $this->cipher_name_openssl = 'des-' . $this->openssl_translate_mode();
DRijndael.php293 …$this->cipher_name_openssl = 'aes-' . ($this->key_length << 3) . '-' . $this->openssl_translate_mo…
DBlowfish.php388 $this->cipher_name_openssl = 'bf-' . $this->openssl_translate_mode();
DChaCha20.php31 protected $cipher_name_openssl = 'chacha20'; variable in phpseclib3\\Crypt\\ChaCha20