SSH2: micro-optimization for AES-GCM

This commit is contained in:
terrafrost 2019-03-23 21:41:52 -05:00
parent 70f5eb4bf7
commit 16abd15089

View File

@ -4120,7 +4120,7 @@ class SSH2
$this->encrypt->invocation_counter
);
Strings::increment_str($this->encrypt->invocation_counter);
$this->encrypt->setAAD($temp = substr($packet, 0, 4));
$this->encrypt->setAAD($temp = ($packet & "\xFF\xFF\xFF\xFF"));
$packet = $temp . $this->encrypt->encrypt(substr($packet, 4));
}
}