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 1324 … $iv = mcrypt_generic($this->ecb, $iv) ^ substr($plaintext, $i, $block_size); 1333 $iv = mcrypt_generic($this->ecb, $iv); 1702 $plaintext .= mcrypt_generic($this->ecb, $iv . $cb) ^ $cb; 1707 $iv = mcrypt_generic($this->ecb, $iv); 2394 if ($this->ecb) { 2395 mcrypt_module_close($this->ecb); 2396 $this->ecb = null; 2524 … $this->ecb = mcrypt_module_open($this->cipher_name_mcrypt, '', MCRYPT_MODE_ECB, ''); 2529 … mcrypt_generic_init($this->ecb, $this->key, str_repeat("\0", $this->block_size));
|