SAE-PK: Fix build without AES-SIV
CONFIG_SAE_PK=y was not pulling in AES-SIV implementation even though it needs this. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
c41004d861
commit
9e305878c0
4 changed files with 4 additions and 0 deletions
|
@ -256,6 +256,7 @@ L_CFLAGS += -DCONFIG_SAE
|
||||||
OBJS += src/common/sae.c
|
OBJS += src/common/sae.c
|
||||||
ifdef CONFIG_SAE_PK
|
ifdef CONFIG_SAE_PK
|
||||||
L_CFLAGS += -DCONFIG_SAE_PK
|
L_CFLAGS += -DCONFIG_SAE_PK
|
||||||
|
NEED_AES_SIV=y
|
||||||
OBJS += src/common/sae_pk.c
|
OBJS += src/common/sae_pk.c
|
||||||
endif
|
endif
|
||||||
NEED_ECC=y
|
NEED_ECC=y
|
||||||
|
|
|
@ -295,6 +295,7 @@ CFLAGS += -DCONFIG_SAE
|
||||||
OBJS += ../src/common/sae.o
|
OBJS += ../src/common/sae.o
|
||||||
ifdef CONFIG_SAE_PK
|
ifdef CONFIG_SAE_PK
|
||||||
CFLAGS += -DCONFIG_SAE_PK
|
CFLAGS += -DCONFIG_SAE_PK
|
||||||
|
NEED_AES_SIV=y
|
||||||
OBJS += ../src/common/sae_pk.o
|
OBJS += ../src/common/sae_pk.o
|
||||||
endif
|
endif
|
||||||
NEED_ECC=y
|
NEED_ECC=y
|
||||||
|
|
|
@ -243,6 +243,7 @@ L_CFLAGS += -DCONFIG_SAE
|
||||||
OBJS += src/common/sae.c
|
OBJS += src/common/sae.c
|
||||||
ifdef CONFIG_SAE_PK
|
ifdef CONFIG_SAE_PK
|
||||||
L_CFLAGS += -DCONFIG_SAE_PK
|
L_CFLAGS += -DCONFIG_SAE_PK
|
||||||
|
NEED_AES_SIV=y
|
||||||
OBJS += src/common/sae_pk.c
|
OBJS += src/common/sae_pk.c
|
||||||
endif
|
endif
|
||||||
NEED_ECC=y
|
NEED_ECC=y
|
||||||
|
|
|
@ -266,6 +266,7 @@ CFLAGS += -DCONFIG_SAE
|
||||||
OBJS += ../src/common/sae.o
|
OBJS += ../src/common/sae.o
|
||||||
ifdef CONFIG_SAE_PK
|
ifdef CONFIG_SAE_PK
|
||||||
CFLAGS += -DCONFIG_SAE_PK
|
CFLAGS += -DCONFIG_SAE_PK
|
||||||
|
NEED_AES_SIV=y
|
||||||
OBJS += ../src/common/sae_pk.o
|
OBJS += ../src/common/sae_pk.o
|
||||||
endif
|
endif
|
||||||
NEED_ECC=y
|
NEED_ECC=y
|
||||||
|
|
Loading…
Reference in a new issue