mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-31 11:17:29 +02:00
Fix to adjust WC_ASYNC_DEV_SIZE
. Fix for tests/test-trustpeer.conf
typo in include.am.
This commit is contained in:
@ -37,6 +37,6 @@ EXTRA_DIST += tests/test.conf \
|
|||||||
tests/test-fails.conf \
|
tests/test-fails.conf \
|
||||||
tests/test-chains.conf \
|
tests/test-chains.conf \
|
||||||
tests/test-altchains.conf \
|
tests/test-altchains.conf \
|
||||||
tests/test-trustedpeer.conf \
|
tests/test-trustpeer.conf \
|
||||||
tests/test-dhprime.conf
|
tests/test-dhprime.conf
|
||||||
DISTCLEANFILES+= tests/.libs/unit.test
|
DISTCLEANFILES+= tests/.libs/unit.test
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
* to need the size of the structure. */
|
* to need the size of the structure. */
|
||||||
typedef struct WOLFSSL_AES_KEY {
|
typedef struct WOLFSSL_AES_KEY {
|
||||||
/* aligned and big enough for Aes from wolfssl/wolfcrypt/aes.h */
|
/* aligned and big enough for Aes from wolfssl/wolfcrypt/aes.h */
|
||||||
ALIGN16 void* holder[(360 + WC_ASYNC_DEV_SIZE)/ sizeof(void*)];
|
ALIGN16 void* holder[(376 + WC_ASYNC_DEV_SIZE)/ sizeof(void*)];
|
||||||
#ifdef GCM_TABLE
|
#ifdef GCM_TABLE
|
||||||
/* key-based fast multiplication table. */
|
/* key-based fast multiplication table. */
|
||||||
ALIGN16 void* M0[4096 / sizeof(void*)];
|
ALIGN16 void* M0[4096 / sizeof(void*)];
|
||||||
|
@ -1647,9 +1647,9 @@ extern void uITRON4_free(void *p) ;
|
|||||||
#define HAVE_WOLF_EVENT
|
#define HAVE_WOLF_EVENT
|
||||||
|
|
||||||
#ifdef WOLFSSL_ASYNC_CRYPT_TEST
|
#ifdef WOLFSSL_ASYNC_CRYPT_TEST
|
||||||
#define WC_ASYNC_DEV_SIZE 328+24
|
#define WC_ASYNC_DEV_SIZE 168
|
||||||
#else
|
#else
|
||||||
#define WC_ASYNC_DEV_SIZE 328
|
#define WC_ASYNC_DEV_SIZE 336
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(HAVE_CAVIUM) && !defined(HAVE_INTEL_QA) && \
|
#if !defined(HAVE_CAVIUM) && !defined(HAVE_INTEL_QA) && \
|
||||||
|
Reference in New Issue
Block a user