|
@@ -2418,6 +2418,8 @@ wlan_crypto_rsn_keymgmt_to_suite(uint32_t keymgmt)
|
|
|
return RSN_AUTH_KEY_MGMT_FT_802_1X_SUITE_B_384;
|
|
|
case WLAN_CRYPTO_KEY_MGMT_SAE_EXT_KEY:
|
|
|
return RSN_AUTH_KEY_MGMT_SAE_EXT_KEY;
|
|
|
+ case WLAN_CRYPTO_KEY_MGMT_FT_SAE_EXT_KEY:
|
|
|
+ return RSN_AUTH_KEY_MGMT_FT_SAE_EXT_KEY;
|
|
|
}
|
|
|
|
|
|
return status;
|
|
@@ -2579,6 +2581,8 @@ static int32_t wlan_crypto_rsn_suite_to_keymgmt(const uint8_t *sel)
|
|
|
return WLAN_CRYPTO_KEY_MGMT_PSK_SHA384;
|
|
|
case RSN_AUTH_KEY_MGMT_SAE_EXT_KEY:
|
|
|
return WLAN_CRYPTO_KEY_MGMT_SAE_EXT_KEY;
|
|
|
+ case RSN_AUTH_KEY_MGMT_FT_SAE_EXT_KEY:
|
|
|
+ return WLAN_CRYPTO_KEY_MGMT_FT_SAE_EXT_KEY;
|
|
|
}
|
|
|
|
|
|
return status;
|