Searched refs:encryptIV (Results 1 – 1 of 1) sorted by relevance
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/ |
H A D | SymmetricKey.php | 243 protected $encryptIV; variable in phpseclib3\\Crypt\\Common\\SymmetricKey 1168 $cipher->encryptIV = $this->iv = $this->encryptIV = $this->decryptIV = $oldIV; 1189 …$this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA | OPENSSL_ZERO_PADDING, $this->encryptIV); 1191 $this->encryptIV = substr($result, -$this->block_size); 1195 … return $this->openssl_ctr_process($plaintext, $this->encryptIV, $this->enbuffer); 1201 $iv = &$this->encryptIV; 1204 $iv = $this->encryptIV; 1245 …$this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA | OPENSSL_ZERO_PADDING, $this->encryptIV); 1248 $this->encryptIV = substr($ciphertext, -$this->block_size); 1250 …$this->encryptIV = substr($this->encryptIV, $len - $this->block_size) . substr($ciphertext, -$len); [all …]
|