/ohos5.0/base/customization/enterprise_device_management/test/unittest/services/edm_plugin/src/ |
H A D | message_parcel_utils_test.cpp | 76 config.wifiEapConfig.phase2Method = Wifi::Phase2Method::NONE; 118 ASSERT_TRUE(config2.wifiEapConfig.phase2Method == Wifi::Phase2Method::NONE); 150 … MessageParcelUtils::ProcessPhase2Method(static_cast<int32_t>(Wifi::Phase2Method::PAP), eapConfig); 151 ASSERT_TRUE(eapConfig.phase2Method == Wifi::Phase2Method::PAP); 153 ASSERT_TRUE(eapConfig.phase2Method == Wifi::Phase2Method::MSCHAP); 155 ASSERT_TRUE(eapConfig.phase2Method == Wifi::Phase2Method::MSCHAPV2); 157 ASSERT_TRUE(eapConfig.phase2Method == Wifi::Phase2Method::GTC); 159 ASSERT_TRUE(eapConfig.phase2Method == Wifi::Phase2Method::SIM); 161 ASSERT_TRUE(eapConfig.phase2Method == Wifi::Phase2Method::AKA); 163 ASSERT_TRUE(eapConfig.phase2Method == Wifi::Phase2Method::AKA_PRIME); [all …]
|
/ohos5.0/base/customization/enterprise_device_management/common/native/src/plugin_utils/ |
H A D | message_parcel_utils.cpp | 151 case static_cast<int32_t>(Wifi::Phase2Method::PAP): in ProcessPhase2Method() 152 eapConfig.phase2Method = Wifi::Phase2Method::PAP; in ProcessPhase2Method() 154 case static_cast<int32_t>(Wifi::Phase2Method::MSCHAP): in ProcessPhase2Method() 155 eapConfig.phase2Method = Wifi::Phase2Method::MSCHAP; in ProcessPhase2Method() 160 case static_cast<int32_t>(Wifi::Phase2Method::GTC): in ProcessPhase2Method() 161 eapConfig.phase2Method = Wifi::Phase2Method::GTC; in ProcessPhase2Method() 163 case static_cast<int32_t>(Wifi::Phase2Method::SIM): in ProcessPhase2Method() 164 eapConfig.phase2Method = Wifi::Phase2Method::SIM; in ProcessPhase2Method() 166 case static_cast<int32_t>(Wifi::Phase2Method::AKA): in ProcessPhase2Method() 167 eapConfig.phase2Method = Wifi::Phase2Method::AKA; in ProcessPhase2Method() [all …]
|
/ohos5.0/foundation/communication/wifi/wifi/frameworks/native/src/ |
H A D | wifi_msg.cpp | 30 std::string prefix = (eap == EAP_METHOD_TTLS && method == static_cast<int>(Phase2Method::GTC)) ? in Phase2MethodToStr() 35 Phase2Method WifiEapConfig::Phase2MethodFromStr(const std::string& str) in Phase2MethodFromStr() 43 return Phase2Method::NONE; in Phase2MethodFromStr() 48 return Phase2Method(i); in Phase2MethodFromStr() 51 return Phase2Method::NONE; in Phase2MethodFromStr()
|
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/native/ |
H A D | wifi_msg_test.cpp | 60 EXPECT_TRUE(WifiEapConfig::Phase2MethodFromStr(str) == Phase2Method::NONE); 62 EXPECT_TRUE(WifiEapConfig::Phase2MethodFromStr(str) == Phase2Method::PAP); 64 EXPECT_TRUE(WifiEapConfig::Phase2MethodFromStr(str) == Phase2Method::NONE); 66 EXPECT_TRUE(WifiEapConfig::Phase2MethodFromStr(str) == Phase2Method::PAP);
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-beta2/ |
H A D | js-apidiff-communicate.md | 130 | ohos.wifi | WifiEapConfig | phase2Method: Phase2Method; | 新增 | 132 | ohos.wifi | Phase2Method | PHASE2_AKA_PRIME | 新增 | 133 | ohos.wifi | Phase2Method | PHASE2_AKA | 新增 | 134 | ohos.wifi | Phase2Method | PHASE2_SIM | 新增 | 135 | ohos.wifi | Phase2Method | PHASE2_GTC | 新增 | 136 | ohos.wifi | Phase2Method | PHASE2_MSCHAPV2 | 新增 | 137 | ohos.wifi | Phase2Method | PHASE2_MSCHAP | 新增 | 138 | ohos.wifi | Phase2Method | PHASE2_PAP | 新增 | 139 | ohos.wifi | Phase2Method | PHASE2_NONE | 新增 |
|
/ohos5.0/docs/en/release-notes/api-diff/v3.2-beta2/ |
H A D | js-apidiff-communicate.md | 130 | ohos.wifi | WifiEapConfig | phase2Method: Phase2Method; | Added| 132 | ohos.wifi | Phase2Method | PHASE2_AKA_PRIME | Added| 133 | ohos.wifi | Phase2Method | PHASE2_AKA | Added| 134 | ohos.wifi | Phase2Method | PHASE2_SIM | Added| 135 | ohos.wifi | Phase2Method | PHASE2_GTC | Added| 136 | ohos.wifi | Phase2Method | PHASE2_MSCHAPV2 | Added| 137 | ohos.wifi | Phase2Method | PHASE2_MSCHAP | Added| 138 | ohos.wifi | Phase2Method | PHASE2_PAP | Added| 139 | ohos.wifi | Phase2Method | PHASE2_NONE | Added|
|
/ohos5.0/base/customization/enterprise_device_management/interfaces/kits/wifi_manager/src/ |
H A D | wifi_manager_addon.cpp | 108 …NAPI_CALL_RETURN_VOID(env, napi_create_int32(env, static_cast<int32_t>(Wifi::Phase2Method::NONE), … in CreatePhase2MethodObject() 111 …NAPI_CALL_RETURN_VOID(env, napi_create_int32(env, static_cast<int32_t>(Wifi::Phase2Method::PAP), &… in CreatePhase2MethodObject() 114 …NAPI_CALL_RETURN_VOID(env, napi_create_int32(env, static_cast<int32_t>(Wifi::Phase2Method::MSCHAP)… in CreatePhase2MethodObject() 117 …NAPI_CALL_RETURN_VOID(env, napi_create_int32(env, static_cast<int32_t>(Wifi::Phase2Method::MSCHAPV… in CreatePhase2MethodObject() 120 …NAPI_CALL_RETURN_VOID(env, napi_create_int32(env, static_cast<int32_t>(Wifi::Phase2Method::GTC), &… in CreatePhase2MethodObject() 123 …NAPI_CALL_RETURN_VOID(env, napi_create_int32(env, static_cast<int32_t>(Wifi::Phase2Method::SIM), &… in CreatePhase2MethodObject() 126 …NAPI_CALL_RETURN_VOID(env, napi_create_int32(env, static_cast<int32_t>(Wifi::Phase2Method::AKA), &… in CreatePhase2MethodObject() 129 …NAPI_CALL_RETURN_VOID(env, napi_create_int32(env, static_cast<int32_t>(Wifi::Phase2Method::AKA_PRI… in CreatePhase2MethodObject() 501 int32_t phase2 = static_cast<int32_t>(Wifi::Phase2Method::NONE); in ProcessEapPeapConfig()
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-beta1/ |
H A D | js-apidiff-customization.md | 96 |新增|NA|模块名: ohos.enterprise.wifiManager<br>类名: Phase2Method|@ohos.enterprise.wifiManager.d.ts| 97 |新增|NA|模块名: ohos.enterprise.wifiManager<br>类名: Phase2Method<br>方法 or 属性: PHASE2_NONE|@ohos.enterpri… 98 |新增|NA|模块名: ohos.enterprise.wifiManager<br>类名: Phase2Method<br>方法 or 属性: PHASE2_PAP|@ohos.enterpris… 99 |新增|NA|模块名: ohos.enterprise.wifiManager<br>类名: Phase2Method<br>方法 or 属性: PHASE2_MSCHAP|@ohos.enterp… 100 |新增|NA|模块名: ohos.enterprise.wifiManager<br>类名: Phase2Method<br>方法 or 属性: PHASE2_MSCHAPV2|@ohos.ente… 101 |新增|NA|模块名: ohos.enterprise.wifiManager<br>类名: Phase2Method<br>方法 or 属性: PHASE2_GTC|@ohos.enterpris… 102 |新增|NA|模块名: ohos.enterprise.wifiManager<br>类名: Phase2Method<br>方法 or 属性: PHASE2_SIM|@ohos.enterpris… 103 |新增|NA|模块名: ohos.enterprise.wifiManager<br>类名: Phase2Method<br>方法 or 属性: PHASE2_AKA|@ohos.enterpris… 104 |新增|NA|模块名: ohos.enterprise.wifiManager<br>类名: Phase2Method<br>方法 or 属性: PHASE2_AKA_PRIME|@ohos.ent… 107 …terprise.wifiManager<br>类名: WifiEapProfile<br>方法 or 属性: phase2Method: Phase2Method;|@ohos.enterpri…
|
/ohos5.0/foundation/communication/wifi/wifi/interfaces/inner_api/ |
H A D | wifi_msg.h | 403 enum class Phase2Method { enum 417 Phase2Method phase2Method; /* Second stage authentication method */ 440 phase2Method = Phase2Method::NONE; in WifiEapConfig() 461 static Phase2Method Phase2MethodFromStr(const std::string& str);
|
/ohos5.0/docs/en/release-notes/api-diff/v4.0-beta1/ |
H A D | js-apidiff-customization.md | 96 |Added|NA|Module name: ohos.enterprise.wifiManager<br>Class name: Phase2Method|@ohos.enterprise.wif… 97 |Added|NA|Module name: ohos.enterprise.wifiManager<br>Class name: Phase2Method<br>Method or attribu… 98 |Added|NA|Module name: ohos.enterprise.wifiManager<br>Class name: Phase2Method<br>Method or attribu… 99 |Added|NA|Module name: ohos.enterprise.wifiManager<br>Class name: Phase2Method<br>Method or attribu… 100 |Added|NA|Module name: ohos.enterprise.wifiManager<br>Class name: Phase2Method<br>Method or attribu… 101 |Added|NA|Module name: ohos.enterprise.wifiManager<br>Class name: Phase2Method<br>Method or attribu… 102 |Added|NA|Module name: ohos.enterprise.wifiManager<br>Class name: Phase2Method<br>Method or attribu… 103 |Added|NA|Module name: ohos.enterprise.wifiManager<br>Class name: Phase2Method<br>Method or attribu… 104 |Added|NA|Module name: ohos.enterprise.wifiManager<br>Class name: Phase2Method<br>Method or attribu… 107 …Class name: WifiEapProfile<br>Method or attribute name: phase2Method: Phase2Method;|@ohos.enterpri…
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-mdm-kit/ |
H A D | js-apis-enterprise-wifiManager.md | 212 | phase2Method | [Phase2Method](#phase2method) | 是 | 第二阶段认证方式。 | 247 ## Phase2Method section
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v3.2-Release/ |
H A D | js-apidiff-customization.md | 172 |新增|NA|类名:Phase2Method;<br>方法or属性:PHASE2_NONE|@ohos.enterprise.wifiManager.d.ts| 173 |新增|NA|类名:Phase2Method;<br>方法or属性:PHASE2_PAP|@ohos.enterprise.wifiManager.d.ts| 174 |新增|NA|类名:Phase2Method;<br>方法or属性:PHASE2_MSCHAP|@ohos.enterprise.wifiManager.d.ts| 175 |新增|NA|类名:Phase2Method;<br>方法or属性:PHASE2_MSCHAPV2|@ohos.enterprise.wifiManager.d.ts| 176 |新增|NA|类名:Phase2Method;<br>方法or属性:PHASE2_GTC|@ohos.enterprise.wifiManager.d.ts| 177 |新增|NA|类名:Phase2Method;<br>方法or属性:PHASE2_SIM|@ohos.enterprise.wifiManager.d.ts| 178 |新增|NA|类名:Phase2Method;<br>方法or属性:PHASE2_AKA|@ohos.enterprise.wifiManager.d.ts| 179 |新增|NA|类名:Phase2Method;<br>方法or属性:PHASE2_AKA_PRIME|@ohos.enterprise.wifiManager.d.ts| 181 |新增|NA|类名:WifiEapProfile;<br>方法or属性:phase2Method: Phase2Method;|@ohos.enterprise.wifiManager.d.ts|
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/monthly-202210/ |
H A D | js-apidiff-communication.md | 328 |新增|NA|模块名: ohos.wifiManager<br>类名: Phase2Method|@ohos.wifiManager.d.ts| 330 |新增|NA|模块名: ohos.wifiManager<br>类名: Phase2Method<br>方法名 or 属性名: PHASE2_PAP|@ohos.wifiManager.d.ts| 588 |删除|模块名: ohos.wifi<br>类名: Phase2Method|NA|@ohos.wifi.d.ts| 589 |删除|模块名: ohos.wifi<br>类名: Phase2Method<br>方法名 or 属性名:PHASE2_NONE|NA|@ohos.wifi.d.ts| 590 |删除|模块名: ohos.wifi<br>类名: Phase2Method<br>方法名 or 属性名:PHASE2_PAP|NA|@ohos.wifi.d.ts| 591 |删除|模块名: ohos.wifi<br>类名: Phase2Method<br>方法名 or 属性名:PHASE2_MSCHAP|NA|@ohos.wifi.d.ts| 592 |删除|模块名: ohos.wifi<br>类名: Phase2Method<br>方法名 or 属性名:PHASE2_MSCHAPV2|NA|@ohos.wifi.d.ts| 593 |删除|模块名: ohos.wifi<br>类名: Phase2Method<br>方法名 or 属性名:PHASE2_GTC|NA|@ohos.wifi.d.ts| 594 |删除|模块名: ohos.wifi<br>类名: Phase2Method<br>方法名 or 属性名:PHASE2_SIM|NA|@ohos.wifi.d.ts| 595 |删除|模块名: ohos.wifi<br>类名: Phase2Method<br>方法名 or 属性名:PHASE2_AKA|NA|@ohos.wifi.d.ts| [all …]
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-beta4/ |
H A D | js-apidiff-communication.md | 345 |新增|NA|模块名: ohos.wifiManager<br>类名: Phase2Method|@ohos.wifiManager.d.ts| 347 |新增|NA|模块名: ohos.wifiManager<br>类名: Phase2Method<br>方法名 or 属性名: PHASE2_PAP|@ohos.wifiManager.d.ts| 599 |删除|模块名: ohos.wifi<br>类名: Phase2Method|NA|@ohos.wifi.d.ts| 600 |删除|模块名: ohos.wifi<br>类名: Phase2Method<br>方法名 or 属性名:PHASE2_NONE|NA|@ohos.wifi.d.ts| 601 |删除|模块名: ohos.wifi<br>类名: Phase2Method<br>方法名 or 属性名:PHASE2_PAP|NA|@ohos.wifi.d.ts| 602 |删除|模块名: ohos.wifi<br>类名: Phase2Method<br>方法名 or 属性名:PHASE2_MSCHAP|NA|@ohos.wifi.d.ts| 603 |删除|模块名: ohos.wifi<br>类名: Phase2Method<br>方法名 or 属性名:PHASE2_MSCHAPV2|NA|@ohos.wifi.d.ts| 604 |删除|模块名: ohos.wifi<br>类名: Phase2Method<br>方法名 or 属性名:PHASE2_GTC|NA|@ohos.wifi.d.ts| 605 |删除|模块名: ohos.wifi<br>类名: Phase2Method<br>方法名 or 属性名:PHASE2_SIM|NA|@ohos.wifi.d.ts| 606 |删除|模块名: ohos.wifi<br>类名: Phase2Method<br>方法名 or 属性名:PHASE2_AKA|NA|@ohos.wifi.d.ts| [all …]
|
/ohos5.0/docs/en/application-dev/reference/apis-mdm-kit/ |
H A D | js-apis-enterprise-wifiManager.md | 212 | phase2Method | [Phase2Method](#phase2method) | Yes | Phase 2 authentication method. … 247 ## Phase2Method section
|
/ohos5.0/docs/en/release-notes/api-diff/v4.0-Release-vs-v3.2-Release/ |
H A D | js-apidiff-customization.md | 172 |Added|NA|Class name: Phase2Method;<br>Method or attribute name: PHASE2_NONE|@ohos.enterprise.wifiM… 173 |Added|NA|Class name: Phase2Method;<br>Method or attribute name: PHASE2_PAP|@ohos.enterprise.wifiMa… 174 |Added|NA|Class name: Phase2Method;<br>Method or attribute name: PHASE2_MSCHAP|@ohos.enterprise.wif… 175 |Added|NA|Class name: Phase2Method;<br>Method or attribute name: PHASE2_MSCHAPV2|@ohos.enterprise.w… 176 |Added|NA|Class name: Phase2Method;<br>Method or attribute name: PHASE2_GTC|@ohos.enterprise.wifiMa… 177 |Added|NA|Class name: Phase2Method;<br>Method or attribute name: PHASE2_SIM|@ohos.enterprise.wifiMa… 178 |Added|NA|Class name: Phase2Method;<br>Method or attribute name: PHASE2_AKA|@ohos.enterprise.wifiMa… 179 |Added|NA|Class name: Phase2Method;<br>Method or attribute name: PHASE2_AKA_PRIME|@ohos.enterprise.… 181 |Added|NA|Class name: WifiEapProfile;<br>Method or attribute name: phase2Method: Phase2Method;|@oho…
|
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_testapp/doc/ApiDoc/WIFIManagerDoc/ |
H A D | WIFIManager功能界面使用说明文档.md | 64 >| phase2Method | **Phase2Method** | 是 | 否 | 第二阶段认证方式。 | 95 >#### Phase2Method 表示第二阶段认证方式的枚举
|
/ohos5.0/docs/en/release-notes/api-diff/monthly-202210/ |
H A D | js-apidiff-communication.md | 328 |Added|NA|Module name: ohos.wifiManager<br>Class name: Phase2Method|@ohos.wifiManager.d.ts| 330 |Added|NA|Module name: ohos.wifiManager<br>Class name: Phase2Method<br>Method or attribute name: PH… 588 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method|NA|@ohos.wifi.d.ts| 589 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_NON… 590 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_PAP… 591 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_MSC… 592 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_MSC… 593 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_GTC… 594 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_SIM… 595 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_AKA… [all …]
|
/ohos5.0/docs/en/release-notes/api-diff/v3.2-beta4/ |
H A D | js-apidiff-communication.md | 345 |Added|NA|Module name: ohos.wifiManager<br>Class name: Phase2Method|@ohos.wifiManager.d.ts| 347 |Added|NA|Module name: ohos.wifiManager<br>Class name: Phase2Method<br>Method or attribute name: PH… 599 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method|NA|@ohos.wifi.d.ts| 600 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_NON… 601 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_PAP… 602 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_MSC… 603 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_MSC… 604 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_GTC… 605 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_SIM… 606 |Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_AKA… [all …]
|
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_3.2.8.3/ |
H A D | changelog-wifi.md | 67 | wifi | enum | export enum Phase2Method | API9接口变更,迁移到@ohos.wifiManager.d.ts |
|
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_client/ |
H A D | wifi_client.cpp | 287 config.wifiEapConfig.phase2Method = Phase2Method(phase2); in GetDeviceConfig()
|
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/ |
H A D | wifi_hdi_wpa_client.cpp | 272 if (config.eapConfig.phase2Method != static_cast<int>(Phase2Method::NONE)) { in SetDeviceConfig() 291 if (config.eapConfig.phase2Method != static_cast<int>(Phase2Method::NONE)) { in SetDeviceConfig()
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_3.2.8.3/ |
H A D | changelog-wifi.md | 67 | wifi | enum | export enum Phase2Method | Migrated this A…
|
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/idl_client/ |
H A D | wifi_idl_client.cpp | 557 if (config.eapConfig.phase2Method != static_cast<int>(Phase2Method::NONE)) { in SetDeviceConfig() 576 if (config.eapConfig.phase2Method != static_cast<int>(Phase2Method::NONE)) { in SetDeviceConfig()
|
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_sta_sa/ |
H A D | wifi_device_stub_lite.cpp | 63 wifiEapConfig.phase2Method = Phase2Method(phase2Method); in ReadEapConfig()
|