From: Jouni Malinen Date: Sun, 16 Oct 2022 15:35:51 +0000 (+0300) Subject: SAE: Accept FT and -EXT-KEY AKMs for external auth X-Git-Tag: hostap_2_11~1632 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=041f6cea94678a2b7839611dd4d760b7b7ff1911;p=thirdparty%2Fhostap.git 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 --- 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; }