Searched refs:cipher_name_openssl_ecb (Results 1 – 6 of 6) sorted by relevance
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
D | TripleDES.php | 179 $this->cipher_name_openssl_ecb = 'des-ede3';
|
D | RC2.php | 281 $this->cipher_name_openssl_ecb = 'rc2-ecb';
|
D | DES.php | 603 $this->cipher_name_openssl_ecb = 'des-ecb';
|
D | Rijndael.php | 292 $this->cipher_name_openssl_ecb = 'aes-' . ($this->key_length << 3) . '-ecb';
|
D | Blowfish.php | 387 $this->cipher_name_openssl_ecb = 'bf-ecb';
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/ |
D | SymmetricKey.php | 452 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)) {
|