From cd4f96924b757db62e903e7fbc01c6e051fbfe6c Mon Sep 17 00:00:00 2001 From: Anthony Hu Date: Thu, 11 Dec 2025 12:23:38 -0500 Subject: [PATCH] Better error message too. --- wolfcrypt/src/error.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/src/error.c b/wolfcrypt/src/error.c index 45092a2da..b24a7710d 100644 --- a/wolfcrypt/src/error.c +++ b/wolfcrypt/src/error.c @@ -315,7 +315,7 @@ const char* wc_GetErrorString(int error) return "Random Number Generator failed"; case HMAC_MIN_KEYLEN_E: - return "FIPS Mode HMAC Minimum Key Length error"; + return "FIPS Mode HMAC Minimum Key or Salt Length error"; case RSA_PAD_E: return "Rsa Padding error";