Searched refs:enmcrypt (Results 1 – 1 of 1) sorted by relevance
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/ |
| H A D | SymmetricKey.php | 289 private $enmcrypt; variable in phpseclib3\\Crypt\\Common\\SymmetricKey 1283 mcrypt_generic_init($this->enmcrypt, $this->key, $this->getIV($this->encryptIV)); 1316 mcrypt_generic_init($this->enmcrypt, $this->key, $iv); 1319 … $ciphertext .= mcrypt_generic($this->enmcrypt, substr($plaintext, $i, $len - $len % $block_size)); 1345 $ciphertext = mcrypt_generic($this->enmcrypt, $plaintext); 1348 mcrypt_generic_init($this->enmcrypt, $this->key, $this->getIV($this->encryptIV)); 2384 if ($this->engine != self::ENGINE_MCRYPT && $this->enmcrypt) { 2389 mcrypt_module_close($this->enmcrypt); 2391 $this->enmcrypt = null; 2505 if (!isset($this->enmcrypt)) { [all …]
|