Searched refs:cipher_name_mcrypt (Results 1 – 8 of 8) sorted by relevance
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
| H A D | RC4.php | 78 protected $cipher_name_mcrypt = 'arcfour'; variable in phpseclib3\\Crypt\\RC4
|
| H A D | TripleDES.php | 73 protected $cipher_name_mcrypt = 'tripledes'; variable in phpseclib3\\Crypt\\TripleDES
|
| H A D | RC2.php | 87 protected $cipher_name_mcrypt = 'rc2'; variable in phpseclib3\\Crypt\\RC2
|
| H A D | Rijndael.php | 82 protected $cipher_name_mcrypt = 'rijndael-128'; variable in phpseclib3\\Crypt\\Rijndael 296 $this->cipher_name_mcrypt = 'rijndael-' . ($this->block_size << 3);
|
| H A D | DES.php | 90 protected $cipher_name_mcrypt = 'des'; variable in phpseclib3\\Crypt\\DES
|
| H A D | Twofish.php | 55 protected $cipher_name_mcrypt = 'twofish'; variable in phpseclib3\\Crypt\\Twofish
|
| H A D | Blowfish.php | 143 protected $cipher_name_mcrypt = 'blowfish'; variable in phpseclib3\\Crypt\\Blowfish
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/ |
| H A D | SymmetricKey.php | 431 protected $cipher_name_mcrypt; variable in phpseclib3\\Crypt\\Common\\SymmetricKey 2267 $result = $this->cipher_name_mcrypt && 2269 in_array($this->cipher_name_mcrypt, mcrypt_list_algorithms()); 2512 …$this->demcrypt = mcrypt_module_open($this->cipher_name_mcrypt, '', $mcrypt_modes[$this->mode], ''… 2513 …$this->enmcrypt = mcrypt_module_open($this->cipher_name_mcrypt, '', $mcrypt_modes[$this->mode], ''… 2519 … $this->ecb = mcrypt_module_open($this->cipher_name_mcrypt, '', MCRYPT_MODE_ECB, '');
|