diff options
author | Jouni Malinen <jouni@qca.qualcomm.com> | 2017-10-08 13:37:32 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2017-10-08 14:12:35 (GMT) |
commit | 7a12edd163ff0e50b9c89ce0407577da500299af (patch) | |
tree | 8a71a75addbf41b80cfbab6def317c8e04e43b01 /hostapd/Makefile | |
parent | 6c4726189c5844fe39e3be0d4f1206ba8b4c8c36 (diff) | |
download | hostap-7a12edd163ff0e50b9c89ce0407577da500299af.zip hostap-7a12edd163ff0e50b9c89ce0407577da500299af.tar.gz hostap-7a12edd163ff0e50b9c89ce0407577da500299af.tar.bz2 |
OWE: Support DH groups 20 (NIST P-384) and 21 (NIST P-521) in AP mode
This extends OWE support in hostapd to allow DH groups 20 and 21 to be
used in addition to the mandatory group 19 (NIST P-256).
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Diffstat (limited to 'hostapd/Makefile')
-rw-r--r-- | hostapd/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hostapd/Makefile b/hostapd/Makefile index c54de39..a00e11c 100644 --- a/hostapd/Makefile +++ b/hostapd/Makefile @@ -318,6 +318,11 @@ ifdef CONFIG_OWE CFLAGS += -DCONFIG_OWE NEED_ECC=y NEED_HMAC_SHA256_KDF=y +NEED_HMAC_SHA384_KDF=y +NEED_HMAC_SHA512_KDF=y +NEED_SHA256=y +NEED_SHA384=y +NEED_SHA512=y endif ifdef CONFIG_FILS |