From 9a07df9631d9c79f111891e1d359f0deb4b784b3 Mon Sep 17 00:00:00 2001 From: Ethan Looney Date: Wed, 15 Jul 2020 08:11:01 -0700 Subject: [PATCH] Changed hash size to 144 for Shake256Hash --- tests/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api.c b/tests/api.c index 9c4a7bfba..ecb52615d 100644 --- a/tests/api.c +++ b/tests/api.c @@ -9273,7 +9273,7 @@ static int test_wc_Shake256Hash(void) 0x72,0x6c,0x64 }; word32 len = sizeof(data); - byte hash[WC_MD5_DIGEST_SIZE]; + byte hash[144]; word32 hashLen = sizeof(hash); printf(testingFmt, "wc_Shake256Hash()");