SymmetricKey: rm unused line

This commit is contained in:
terrafrost 2020-05-16 13:19:24 -05:00
parent a82dc8e009
commit 32acf235e8

View File

@ -3117,7 +3117,6 @@ abstract class SymmetricKey
if (strlen($this->nonce) == 12) {
$this->iv = $this->nonce . "\0\0\0\1";
} else {
$s = 16 * ceil(strlen($this->nonce) / 16) - strlen($this->nonce);
$this->iv = $this->ghash(
self::nullPad128($this->nonce) . str_repeat("\0", 8) . self::len64($this->nonce)
);