Skip to content

Commit 493b18a

Browse files
committed
add parathensis
1 parent 9527ee0 commit 493b18a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CryptoLib/src/Crypto/Engines/ClpSalsa20Engine.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ class procedure TSalsa20Engine.PackTauOrSigma(AKeyLength: Int32;
368368
var
369369
LTsOff: Int32;
370370
begin
371-
LTsOff := AKeyLength div 4 - 4;
371+
LTsOff := (AKeyLength div 4) - 4;
372372
AState[0] := TAU_SIGMA[LTsOff];
373373
AState[1] := TAU_SIGMA[LTsOff + 1];
374374
AState[2] := TAU_SIGMA[LTsOff + 2];

0 commit comments

Comments
 (0)