From 5a75e0f6c6089b6b56c720118caae6e91b47644e Mon Sep 17 00:00:00 2001 From: David Garske Date: Thu, 21 Apr 2022 13:31:39 -0700 Subject: [PATCH] Fix for MCAPI `CRYPT_AES_CTX` size with `./configure --enable-pkcallbacks --enable-mcapi --enable-ecc --enable-sha512 --with-libz --enable-opensslextra`. --- mcapi/crypto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcapi/crypto.h b/mcapi/crypto.h index 7e4794964..cb3aae402 100644 --- a/mcapi/crypto.h +++ b/mcapi/crypto.h @@ -173,7 +173,7 @@ enum { typedef struct CRYPT_AES_CTX { /* big enough to hold internal, but check on init */ #ifdef WOLF_PRIVATE_KEY_ID - int holder[104]; + int holder[108]; #else int holder[90]; #endif