Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

20241023-fixes #8106

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion IDE/STM32Cube/default_conf.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ extern ${variable.value} ${variable.name};
//#define USE_SLOW_SHA512

#define WOLFSSL_SHA512
#define HAVE_SHA512 /* freeRTOS settings.h requires this */
#define HAVE_SHA512 /* old freeRTOS settings.h requires this */
#endif

/* Sha2-384 */
Expand Down
6 changes: 4 additions & 2 deletions IDE/iotsafe/user_settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,10 @@ static inline long XTIME(long *x) { return jiffies;}
#define WOLFSSL_AES_DIRECT

/* Hashing */
#define HAVE_SHA384
#define HAVE_SHA512
#define WOLFSSL_SHA384
#define HAVE_SHA384 /* old freeRTOS settings.h requires this */
#define WOLFSSL_SHA512
#define HAVE_SHA512 /* old freeRTOS settings.h requires this */
#define HAVE_HKDF

/* TLS */
Expand Down
2 changes: 1 addition & 1 deletion examples/configs/user_settings_stm32.h
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ extern "C" {
//#define USE_SLOW_SHA512

#define WOLFSSL_SHA512
#define HAVE_SHA512 /* freeRTOS settings.h requires this */
#define HAVE_SHA512 /* old freeRTOS settings.h requires this */
#endif

/* Sha2-384 */
Expand Down
Loading