Home
last modified time | relevance | path

Searched refs:cipher_name_openssl_ecb (Results 1 – 6 of 6) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
DTripleDES.php179 $this->cipher_name_openssl_ecb = 'des-ede3';
DRC2.php281 $this->cipher_name_openssl_ecb = 'rc2-ecb';
DDES.php603 $this->cipher_name_openssl_ecb = 'des-ecb';
DRijndael.php292 $this->cipher_name_openssl_ecb = 'aes-' . ($this->key_length << 3) . '-ecb';
DBlowfish.php387 $this->cipher_name_openssl_ecb = 'bf-ecb';
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
DSymmetricKey.php452 protected $cipher_name_openssl_ecb; variable in phpseclib3\\Crypt\\Common\\SymmetricKey
1260 …$xor = openssl_encrypt($iv, $this->cipher_name_openssl_ecb, $this->key, $this->openssl_options, $t…
1648 …$xor = openssl_encrypt($iv, $this->cipher_name_openssl_ecb, $this->key, $this->openssl_options, $t…
1989 …$buffer['ciphertext'] .= openssl_encrypt($xor, $this->cipher_name_openssl_ecb, $key, OPENSSL_RAW_D…
1998 …$otp = openssl_encrypt($xor, $this->cipher_name_openssl_ecb, $key, OPENSSL_RAW_DATA | OPENSSL_ZERO…
2040 …$encryptIV = openssl_decrypt($encryptIV, $this->cipher_name_openssl_ecb, $key, OPENSSL_RAW_DATA | …
2258 if (in_array($this->cipher_name_openssl_ecb, $methods)) {