Skip to content

Commit

Permalink
missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
gasbytes committed Oct 2, 2024
1 parent 10f0885 commit ea852c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tls.c
Original file line number Diff line number Diff line change
Expand Up @@ -1345,7 +1345,7 @@ int TLS_hmac(WOLFSSL* ssl, byte* digest, const byte* in, word32 sz, int padSz,
{
ret = Hmac_UpdateFinal_CT(&hmac, digest, in,
(sz + hashSz + (word32)padSz + 1),
(int)hashSz, myInner);
(int)hashSz, myInner, innerSz);

}
#else
Expand Down

0 comments on commit ea852c1

Please sign in to comment.