]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
SAE-PK: Fix build without AES-SIV
authorJouni Malinen <j@w1.fi>
Thu, 26 May 2022 17:45:37 +0000 (20:45 +0300)
committerJouni Malinen <j@w1.fi>
Thu, 26 May 2022 17:51:23 +0000 (20:51 +0300)
CONFIG_SAE_PK=y was not pulling in AES-SIV implementation even though it
needs this.

Signed-off-by: Jouni Malinen <j@w1.fi>
hostapd/Android.mk
hostapd/Makefile
wpa_supplicant/Android.mk
wpa_supplicant/Makefile

index 953031577574ec4c1839a98d394e6c664f3a5d1e..2f8e8862e63eb66e3f7196d9fef73e49ce02067d 100644 (file)
@@ -256,6 +256,7 @@ L_CFLAGS += -DCONFIG_SAE
 OBJS += src/common/sae.c
 ifdef CONFIG_SAE_PK
 L_CFLAGS += -DCONFIG_SAE_PK
+NEED_AES_SIV=y
 OBJS += src/common/sae_pk.c
 endif
 NEED_ECC=y
index 3325937ffb37adb8cff001387e44242fcd0e9e9f..73cf28c1a1daf41f8b00cccede2121f11848c18c 100644 (file)
@@ -295,6 +295,7 @@ CFLAGS += -DCONFIG_SAE
 OBJS += ../src/common/sae.o
 ifdef CONFIG_SAE_PK
 CFLAGS += -DCONFIG_SAE_PK
+NEED_AES_SIV=y
 OBJS += ../src/common/sae_pk.o
 endif
 NEED_ECC=y
index 34d37fdcc5b3f5039a88aa320f5fbbd2a562cd8d..605419bf5d1db6a6b7ef4efd6580eeb48b5e9a6e 100644 (file)
@@ -243,6 +243,7 @@ L_CFLAGS += -DCONFIG_SAE
 OBJS += src/common/sae.c
 ifdef CONFIG_SAE_PK
 L_CFLAGS += -DCONFIG_SAE_PK
+NEED_AES_SIV=y
 OBJS += src/common/sae_pk.c
 endif
 NEED_ECC=y
index d12b485a83bd9846ebc1ba0e28afc7ababd555a3..a6bcb4c42fd48769f1eb87b51cb46264043ad880 100644 (file)
@@ -266,6 +266,7 @@ CFLAGS += -DCONFIG_SAE
 OBJS += ../src/common/sae.o
 ifdef CONFIG_SAE_PK
 CFLAGS += -DCONFIG_SAE_PK
+NEED_AES_SIV=y
 OBJS += ../src/common/sae_pk.o
 endif
 NEED_ECC=y