From 041f6cea94678a2b7839611dd4d760b7b7ff1911 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 16 Oct 2022 18:35:51 +0300 Subject: [PATCH] SAE: Accept FT and -EXT-KEY AKMs for external auth Use a full list of AKM suite selectors that can use SAE authentication when checking for authentication trigger from the driver. Signed-off-by: Jouni Malinen --- wpa_supplicant/sme.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wpa_supplicant/sme.c b/wpa_supplicant/sme.c index aa94e5c73..c9473947a 100644 --- a/wpa_supplicant/sme.c +++ b/wpa_supplicant/sme.c @@ -1193,7 +1193,10 @@ static bool is_sae_key_mgmt_suite(u32 suite) if (RSN_SELECTOR_GET(&suite) == RSN_AUTH_KEY_MGMT_SAE) return true; - return suite == RSN_AUTH_KEY_MGMT_SAE; + return suite == RSN_AUTH_KEY_MGMT_SAE || + suite == RSN_AUTH_KEY_MGMT_FT_SAE || + suite == RSN_AUTH_KEY_MGMT_SAE_EXT_KEY || + suite == RSN_AUTH_KEY_MGMT_FT_SAE_EXT_KEY; }