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 1173 $cipher->encryptIV = $this->iv = $this->encryptIV = $this->decryptIV = $oldIV; 1194 …$this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA | OPENSSL_ZERO_PADDING, $this->encryptIV); 1196 $this->encryptIV = substr($result, -$this->block_size); 1200 … return $this->openssl_ctr_process($plaintext, $this->encryptIV, $this->enbuffer); 1206 $iv = &$this->encryptIV; 1209 $iv = $this->encryptIV; 1250 …$this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA | OPENSSL_ZERO_PADDING, $this->encryptIV); 1253 $this->encryptIV = substr($ciphertext, -$this->block_size); 1255 …$this->encryptIV = substr($this->encryptIV, $len - $this->block_size) . substr($ciphertext, -$len); [all …]
|