feat(wifi): Add SAE EXT key support for esp station

This commit is contained in:
Shreyas Sheth
2023-10-09 11:02:41 +05:30
parent 98cc860e86
commit ee9ce51133
11 changed files with 77 additions and 68 deletions

View File

@@ -855,7 +855,8 @@ int wpa_pmk_r1_to_ptk(const u8 *pmk_r1, const u8 *snonce, const u8 *anonce,
*/
int wpa_use_akm_defined(int akmp){
return akmp == WPA_KEY_MGMT_OWE ||
return akmp == WPA_KEY_MGMT_OSEN ||
akmp == WPA_KEY_MGMT_OWE ||
wpa_key_mgmt_sae(akmp) ||
wpa_key_mgmt_suite_b(akmp);
}