diff options
author | Jouni Malinen <jouni@codeaurora.org> | 2020-05-30 20:30:42 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2020-06-02 20:25:22 (GMT) |
commit | 6b9e99e571ee6a075117ccea873b6578ad9ceb04 (patch) | |
tree | dc096bd82273e7c774bfcbf5d09eeded84d0d2a2 /hostapd/Makefile | |
parent | b6dcbd01a604088f1152c62ae8a7965df859eaf4 (diff) | |
download | hostap-6b9e99e571ee6a075117ccea873b6578ad9ceb04.zip hostap-6b9e99e571ee6a075117ccea873b6578ad9ceb04.tar.gz hostap-6b9e99e571ee6a075117ccea873b6578ad9ceb04.tar.bz2 |
SAE-PK: Extend SAE functionality for AP validation
This adds core SAE functionality for a new mode of using SAE with a
specially constructed password that contains a fingerprint for an AP
public key and that public key being used to validate an additional
signature in SAE confirm from the AP.
Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
Diffstat (limited to 'hostapd/Makefile')
-rw-r--r-- | hostapd/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hostapd/Makefile b/hostapd/Makefile index 5b0d3b8..3cc64c9 100644 --- a/hostapd/Makefile +++ b/hostapd/Makefile @@ -294,6 +294,10 @@ endif ifdef CONFIG_SAE CFLAGS += -DCONFIG_SAE OBJS += ../src/common/sae.o +ifdef CONFIG_SAE_PK +CFLAGS += -DCONFIG_SAE_PK +OBJS += ../src/common/sae_pk.o +endif NEED_ECC=y NEED_DH_GROUPS=y NEED_HMAC_SHA256_KDF=y |