From 6c82defd657ccae132f495c8e0f5bf4f03d28ffe Mon Sep 17 00:00:00 2001 From: gojimmypi Date: Sun, 26 Jan 2025 09:28:36 -0800 Subject: [PATCH] add reminder on aes.h chip-specific --- wolfssl/wolfcrypt/port/Espressif/esp32-crypt.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wolfssl/wolfcrypt/port/Espressif/esp32-crypt.h b/wolfssl/wolfcrypt/port/Espressif/esp32-crypt.h index dd7181815d..3ce19cadd6 100644 --- a/wolfssl/wolfcrypt/port/Espressif/esp32-crypt.h +++ b/wolfssl/wolfcrypt/port/Espressif/esp32-crypt.h @@ -716,6 +716,8 @@ extern "C" #if ESP_IDF_VERSION_MAJOR > 5 || (ESP_IDF_VERSION_MAJOR == 5 && ESP_IDF_VERSION_MINOR >= 4) #include "rom/aes.h" #elif ESP_IDF_VERSION_MAJOR >= 4 + /* TODO: aes.h include is chip-specific in some versions of ESP-IDF. + * See https://github.com/wolfSSL/wolfssl/pull/8380 */ #include "esp32/rom/aes.h" #elif defined(CONFIG_IDF_TARGET_ESP8266) /* no hardware includes for ESP8266*/