Merge pull request #8737 from julek-wolfssl/wc_HKDF_Expand_ex-fix

wc_HKDF_Expand_ex: correctly advance the index
This commit is contained in:
Sean Parkinson
2025-05-07 08:23:33 +10:00
committed by GitHub

View File

@ -1581,7 +1581,7 @@ int wolfSSL_GetHmacMaxSize(void)
left = min(left, hashSz);
XMEMCPY(out+outIdx, tmp, left);
outIdx += hashSz;
outIdx += left;
n++;
}