Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php310 private $enmcrypt; variable in phpseclib3\\Crypt\\Common\\SymmetricKey
1276 mcrypt_generic_init($this->enmcrypt, $this->key, $this->getIV($this->encryptIV));
1309 mcrypt_generic_init($this->enmcrypt, $this->key, $iv);
1312 … $ciphertext .= mcrypt_generic($this->enmcrypt, substr($plaintext, $i, $len - $len % $block_size));
1338 $ciphertext = mcrypt_generic($this->enmcrypt, $plaintext);
1341 mcrypt_generic_init($this->enmcrypt, $this->key, $this->getIV($this->encryptIV));
2393 if ($this->engine != self::ENGINE_MCRYPT && $this->enmcrypt) {
2398 mcrypt_module_close($this->enmcrypt);
2400 $this->enmcrypt = null;
2518 if (!isset($this->enmcrypt)) {
[all …]