You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Discovered during testing for #6028, the recent changes in #6287 introduced WOLFSSL_SP_INT_NEGATIVE handling in esp_mp_mul() are not specific to the ESP32-S3.
Currently when using #define OPENSSL_ALL in the user_settings.h for a ESP32-WROOM32, a compile error is encountered:
Reproduction steps
See any of the examples with #define OPENSSL_ALL in the user_settings.h for a ESP32-WROOM32.
Reminder that the ESP32-S3 does not support AES-192 at this time as noted in #5948 (comment)
This setting may needed to turn on WOLFSSL_SP_INT_NEGATIVE with #define OPENSSL_ALL:
#include <sdkconfig.h>
#if defined(CONFIG_IDF_TARGET_ESP32S3) && !defined(NO_WOLFSSL_ESP32WROOM32_CRYPT_AES)
/* AES192 is not supported on the ESP32-S3 HW at this time */
#define NO_AES_192
#endif
Contact Details
No response
Version
latest master
Description
Discovered during testing for #6028, the recent changes in #6287 introduced
WOLFSSL_SP_INT_NEGATIVE
handling in esp_mp_mul() are not specific to the ESP32-S3.Currently when using
#define OPENSSL_ALL
in theuser_settings.h
for a ESP32-WROOM32, a compile error is encountered:Reproduction steps
See any of the examples with
#define OPENSSL_ALL
in theuser_settings.h
for a ESP32-WROOM32.Relevant log output
The text was updated successfully, but these errors were encountered: