Searched refs:enmcrypt (Results 1 – 1 of 1) sorted by relevance
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/ |
D | SymmetricKey.php | 289 private $enmcrypt; variable in phpseclib3\\Crypt\\Common\\SymmetricKey 1278 mcrypt_generic_init($this->enmcrypt, $this->key, $this->getIV($this->encryptIV)); 1311 mcrypt_generic_init($this->enmcrypt, $this->key, $iv); 1314 … $ciphertext .= mcrypt_generic($this->enmcrypt, substr($plaintext, $i, $len - $len % $block_size)); 1340 $ciphertext = mcrypt_generic($this->enmcrypt, $plaintext); 1343 mcrypt_generic_init($this->enmcrypt, $this->key, $this->getIV($this->encryptIV)); 2379 if ($this->engine != self::ENGINE_MCRYPT && $this->enmcrypt) { 2384 mcrypt_module_close($this->enmcrypt); 2386 $this->enmcrypt = null; 2500 if (!isset($this->enmcrypt)) { [all …]
|