From 7ce7d244f87425899ddf1abccd4bcdc23a8bb977 Mon Sep 17 00:00:00 2001 From: David Garske Date: Thu, 28 May 2020 15:09:00 -0700 Subject: [PATCH] Fix for using static memory AES GCM test. --- wolfcrypt/test/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/test/test.c b/wolfcrypt/test/test.c index 25d0cf24c..d38ea00ee 100644 --- a/wolfcrypt/test/test.c +++ b/wolfcrypt/test/test.c @@ -8876,7 +8876,7 @@ int aesgcm_test(void) WC_RNG rng; byte randIV[12]; - result = wc_InitRng(&rng); + result = wc_InitRng_ex(&rng, HEAP_HINT, devId); if (result != 0) return -6135;