NULL plaintext input is supported in FIPS testing

This commit is contained in:
kaleb-himes
2017-09-14 20:14:21 -06:00
parent afcef7d394
commit 1f7d73f626

View File

@ -54,7 +54,7 @@
}
int wc_HmacUpdate(Hmac* hmac, const byte* in, word32 sz)
{
if (hmac == NULL || in == NULL) {
if (hmac == NULL) {
return BAD_FUNC_ARG;
}