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 <quic_jouni@quicinc.com>
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;
}