Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions include/wolfengine/we_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,17 @@ WOLFENGINE_LOCAL void *we_memdup(const void *data, size_t siz);
#define WE_PRINTF_FUNC(s, v)
#endif

#ifndef AES_BLOCK_SIZE
#include <openssl/aes.h>
#ifndef AES_BLOCK_SIZE
#ifdef WC_NO_COMPAT_AES_BLOCK_SIZE
#define AES_BLOCK_SIZE WC_AES_BLOCK_SIZE
#else
#error AES_BLOCK_SIZE not defined when it should be
#endif
#endif
#endif

/*
* Global random
*/
Expand Down