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 <quic_jouni@quicinc.com>
This commit is contained in:
parent
b72922796a
commit
041f6cea94
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue