Searched refs:encryptIV (Results 1 – 1 of 1) sorted by relevance
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/ |
D | SymmetricKey.php | 259 protected $encryptIV; variable in phpseclib3\\Crypt\\Common\\SymmetricKey 1166 $cipher->encryptIV = $this->iv = $this->encryptIV = $this->decryptIV = $oldIV; 1187 …$this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA | OPENSSL_ZERO_PADDING, $this->encryptIV); 1189 $this->encryptIV = substr($result, -$this->block_size); 1193 … return $this->openssl_ctr_process($plaintext, $this->encryptIV, $this->enbuffer); 1199 $iv = &$this->encryptIV; 1202 $iv = $this->encryptIV; 1243 …$this->cipher_name_openssl, $this->key, OPENSSL_RAW_DATA | OPENSSL_ZERO_PADDING, $this->encryptIV); 1246 $this->encryptIV = substr($ciphertext, -$this->block_size); 1248 …$this->encryptIV = substr($this->encryptIV, $len - $this->block_size) . substr($ciphertext, -$len); [all …]
|