Skip to content

Commit

Permalink
Fix WOLF_CONF_AESGCM=2.
Browse files Browse the repository at this point in the history
  • Loading branch information
dgarske committed Sep 19, 2024
1 parent 9815d9b commit 9d24480
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion IDE/STM32Cube/default_conf.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ extern ${variable.value} ${variable.name};
#endif

/* AES */
#if defined(WOLF_CONF_AESGCM) && WOLF_CONF_AESGCM == 1
#if defined(WOLF_CONF_AESGCM) && WOLF_CONF_AESGCM >= 1
#define HAVE_AESGCM
#define HAVE_AES_DECRYPT

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 @@ -511,7 +511,7 @@ extern "C" {
#endif

/* AES */
#if defined(WOLF_CONF_AESGCM) && WOLF_CONF_AESGCM == 1
#if defined(WOLF_CONF_AESGCM) && WOLF_CONF_AESGCM >= 1
#define HAVE_AESGCM
#define HAVE_AES_DECRYPT

Expand Down

0 comments on commit 9d24480

Please sign in to comment.