Searched refs:ecb (Results 1 – 1 of 1) sorted by relevance
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/ |
| H A D | SymmetricKey.php | 336 private $ecb; variable in phpseclib3\\Crypt\\Common\\SymmetricKey 1319 … $iv = mcrypt_generic($this->ecb, $iv) ^ substr($plaintext, $i, $block_size); 1328 $iv = mcrypt_generic($this->ecb, $iv); 1697 $plaintext .= mcrypt_generic($this->ecb, $iv . $cb) ^ $cb; 1702 $iv = mcrypt_generic($this->ecb, $iv); 2389 if ($this->ecb) { 2390 mcrypt_module_close($this->ecb); 2391 $this->ecb = null; 2519 … $this->ecb = mcrypt_module_open($this->cipher_name_mcrypt, '', MCRYPT_MODE_ECB, ''); 2524 … mcrypt_generic_init($this->ecb, $this->key, str_repeat("\0", $this->block_size));
|