Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php361 private $ecb; variable in phpseclib3\\Crypt\\Common\\SymmetricKey
1317 … $iv = mcrypt_generic($this->ecb, $iv) ^ substr($plaintext, $i, $block_size);
1326 $iv = mcrypt_generic($this->ecb, $iv);
1696 $plaintext .= mcrypt_generic($this->ecb, $iv . $cb) ^ $cb;
1701 $iv = mcrypt_generic($this->ecb, $iv);
2403 if ($this->ecb) {
2404 mcrypt_module_close($this->ecb);
2405 $this->ecb = null;
2537 … $this->ecb = mcrypt_module_open($this->cipher_name_mcrypt, '', MCRYPT_MODE_ECB, '');
2542 … mcrypt_generic_init($this->ecb, $this->key, str_repeat("\0", $this->block_size));