Home
last modified time | relevance | path

Searched refs:Phase2Method (Results 1 – 25 of 38) sorted by relevance

12

/ohos5.0/base/customization/enterprise_device_management/test/unittest/services/edm_plugin/src/
H A Dmessage_parcel_utils_test.cpp76 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 Dmessage_parcel_utils.cpp151 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 Dwifi_msg.cpp30 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 Dwifi_msg_test.cpp60 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 Djs-apidiff-communicate.md130 | 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 Djs-apidiff-communicate.md130 | 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 Dwifi_manager_addon.cpp108 …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 Djs-apidiff-customization.md96 |新增|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 Dwifi_msg.h403 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 Djs-apidiff-customization.md96 |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 Djs-apis-enterprise-wifiManager.md212 | phase2Method | [Phase2Method](#phase2method) | 是 | 第二阶段认证方式。 |
247 ## Phase2Method section
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v3.2-Release/
H A Djs-apidiff-customization.md172 |新增|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 Djs-apidiff-communication.md328 |新增|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 Djs-apidiff-communication.md345 |新增|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 Djs-apis-enterprise-wifiManager.md212 | 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 Djs-apidiff-customization.md172 |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 DWIFIManager功能界面使用说明文档.md64 >| phase2Method | **Phase2Method** | 是 | 否 | 第二阶段认证方式。 |
95 >#### Phase2Method 表示第二阶段认证方式的枚举
/ohos5.0/docs/en/release-notes/api-diff/monthly-202210/
H A Djs-apidiff-communication.md328 |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 Djs-apidiff-communication.md345 |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 Dchangelog-wifi.md67 | wifi | enum | export enum Phase2Method | API9接口变更,迁移到@ohos.wifiManager.d.ts |
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_client/
H A Dwifi_client.cpp287 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 Dwifi_hdi_wpa_client.cpp272 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 Dchangelog-wifi.md67 | 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 Dwifi_idl_client.cpp557 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 Dwifi_device_stub_lite.cpp63 wifiEapConfig.phase2Method = Phase2Method(phase2Method); in ReadEapConfig()

12