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
5 changes: 5 additions & 0 deletions wolftpm/tpm2_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,11 @@ typedef int64_t INT64;
#include <wolfssl/ssl.h> /* for wolfSSL_ERR_reason_error_string */
#endif

/* coexist-enabled wolfSSL only exposes WC_AES_BLOCK_SIZE; alias classic name */
#if defined(WC_NO_COMPAT_AES_BLOCK_SIZE) && !defined(AES_BLOCK_SIZE)
#define AES_BLOCK_SIZE WC_AES_BLOCK_SIZE
#endif

#if defined(DEBUG_WOLFTPM) && !defined(WOLFTPM_NO_STD_HEADERS)
#include <stdio.h>
#endif
Expand Down
Loading