Home
last modified time | relevance | path

Searched refs:cipher_name_mcrypt (Results 1 – 8 of 8) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRC4.php78 protected $cipher_name_mcrypt = 'arcfour'; variable in phpseclib3\\Crypt\\RC4
H A DTripleDES.php73 protected $cipher_name_mcrypt = 'tripledes'; variable in phpseclib3\\Crypt\\TripleDES
H A DRC2.php87 protected $cipher_name_mcrypt = 'rc2'; variable in phpseclib3\\Crypt\\RC2
H A DRijndael.php82 protected $cipher_name_mcrypt = 'rijndael-128'; variable in phpseclib3\\Crypt\\Rijndael
296 $this->cipher_name_mcrypt = 'rijndael-' . ($this->block_size << 3);
H A DDES.php90 protected $cipher_name_mcrypt = 'des'; variable in phpseclib3\\Crypt\\DES
H A DTwofish.php55 protected $cipher_name_mcrypt = 'twofish'; variable in phpseclib3\\Crypt\\Twofish
H A DBlowfish.php143 protected $cipher_name_mcrypt = 'blowfish'; variable in phpseclib3\\Crypt\\Blowfish
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php431 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, '');