NetworkPkg: Add Wi-Fi Wpa3 support in WifiConnectManager
https://bugzilla.tianocore.org/show_bug.cgi?id=3961 Add below Wpa3 support: WPA3-Personal: Ieee80211AkmSuiteSAE = 8 WPA3-Enterprise: Ieee80211AkmSuite8021XSuiteB = 11 Ieee80211AkmSuite8021XSuiteB192 = 12 Wi-Fi CERTIFIED Enhanced Open: Ieee80211AkmSuiteOWE = 18 Cc: Maciej Rabeda <maciej.rabeda@linux.intel.com> Cc: Fu Siyuan <siyuan.fu@intel.com> Cc: Wu Jiaxin <jiaxin.wu@intel.com> Signed-off-by: Heng Luo <heng.luo@intel.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/** @file
|
||||
The Mac Connection2 Protocol adapter functions for WiFi Connection Manager.
|
||||
|
||||
Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2019 - 2022, Intel Corporation. All rights reserved.<BR>
|
||||
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
||||
@@ -848,6 +848,7 @@ WifiMgrPrepareConnection (
|
||||
if (AKMSuiteSupported && CipherSuiteSupported) {
|
||||
switch (SecurityType) {
|
||||
case SECURITY_TYPE_WPA2_PERSONAL:
|
||||
case SECURITY_TYPE_WPA3_PERSONAL:
|
||||
|
||||
Status = WifiMgrConfigPassword (Nic, Profile);
|
||||
if (EFI_ERROR (Status)) {
|
||||
@@ -863,6 +864,7 @@ WifiMgrPrepareConnection (
|
||||
break;
|
||||
|
||||
case SECURITY_TYPE_WPA2_ENTERPRISE:
|
||||
case SECURITY_TYPE_WPA3_ENTERPRISE:
|
||||
|
||||
Status = WifiMgrConfigEap (Nic, Profile);
|
||||
if (EFI_ERROR (Status)) {
|
||||
|
Reference in New Issue
Block a user