/ohos5.0/foundation/communication/wifi/wifi/frameworks/native/src/ |
H A D | wifi_msg.cpp | 55 const std::string eapMethod[] = { "NONE", "PEAP", "TLS", "TTLS", "PWD", "SIM", "AKA", "AKA'" }; in Str2EapMethod() local 56 int len = sizeof(eapMethod) / sizeof(eapMethod[0]); in Str2EapMethod() 58 if (eapMethod[i] == str) { in Str2EapMethod()
|
/ohos5.0/foundation/communication/wifi/wifi/frameworks/js/napi/src/ |
H A D | wifi_napi_entry.cpp | 216 napi_value eapMethod = nullptr; in EapMethodInit() local 217 napi_create_object(env, &eapMethod); in EapMethodInit() 218 SetNamedPropertyByInteger(env, eapMethod, static_cast<int>(EapMethodJs::EAP_NONE), "EAP_NONE"); in EapMethodInit() 219 SetNamedPropertyByInteger(env, eapMethod, static_cast<int>(EapMethodJs::EAP_PEAP), "EAP_PEAP"); in EapMethodInit() 220 SetNamedPropertyByInteger(env, eapMethod, static_cast<int>(EapMethodJs::EAP_TLS), "EAP_TLS"); in EapMethodInit() 221 SetNamedPropertyByInteger(env, eapMethod, static_cast<int>(EapMethodJs::EAP_TTLS), "EAP_TTLS"); in EapMethodInit() 222 SetNamedPropertyByInteger(env, eapMethod, static_cast<int>(EapMethodJs::EAP_PWD), "EAP_PWD"); in EapMethodInit() 223 SetNamedPropertyByInteger(env, eapMethod, static_cast<int>(EapMethodJs::EAP_SIM), "EAP_SIM"); in EapMethodInit() 224 SetNamedPropertyByInteger(env, eapMethod, static_cast<int>(EapMethodJs::EAP_AKA), "EAP_AKA"); in EapMethodInit() 225 …SetNamedPropertyByInteger(env, eapMethod, static_cast<int>(EapMethodJs::EAP_AKA_PRIME), "EAP_AKA_P… in EapMethodInit() [all …]
|
H A D | wifi_napi_device.cpp | 373 int eapMethod = static_cast<int>(EapMethodJs::EAP_NONE); in ProcessEapConfig() local 376 JsObjectToInt(env, napiEap, "eapMethod", eapMethod); in ProcessEapConfig() 377 devConfig.wifiEapConfig.eap = EapMethod2Str(eapMethod); in ProcessEapConfig() 382 __func__, eapMethod, devConfig.wifiEapConfig.eap.c_str()); in ProcessEapConfig()
|
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_sta/ |
H A D | sta_service.cpp | 362 std::string eapMethod = config.wifiEapConfig.eap; in UpdateEapConfig() local 364 LOGI("Enter StaService::UpdateEapConfig, eapMethod:%{public}s", eapMethod.c_str()); in UpdateEapConfig() 366 if (eapMethod == EAP_METHOD_SIM) { in UpdateEapConfig() 368 } else if (eapMethod == EAP_METHOD_AKA) { in UpdateEapConfig() 370 } else if (eapMethod == EAP_METHOD_AKA_PRIME) { in UpdateEapConfig()
|
/ohos5.0/base/customization/enterprise_device_management/interfaces/kits/wifi_manager/src/ |
H A D | wifi_manager_addon.cpp | 478 int32_t eapMethod = static_cast<int32_t>(EapMethod::EAP_NONE); in ProcessEapConfig() local 480 !JsObjectToInt(env, napiEap, "eapMethod", true, eapMethod)) { in ProcessEapConfig() 483 switch (eapMethod) { in ProcessEapConfig() 491 EDMLOGI("EapMethod: %{public}d unsupported", eapMethod); in ProcessEapConfig()
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-mdm-kit/ |
H A D | js-apis-enterprise-wifiManager.md | 211 | eapMethod | [EapMethod](#eapmethod) | 是 | AP认证方式。 |
|
/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 | 263 EapMethod eapMethod = WifiEapConfig::Str2EapMethod(config.eapConfig.eap); in SetDeviceConfig() local 265 __func__, config.eapConfig.eap.c_str(), eapMethod, config.eapConfig.identity.c_str(), num); in SetDeviceConfig() 266 switch (eapMethod) { in SetDeviceConfig() 309 LOGE("%{public}s, invalid eapMethod:%{public}d", __func__, eapMethod); in SetDeviceConfig()
|
/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 | 548 EapMethod eapMethod = WifiEapConfig::Str2EapMethod(config.eapConfig.eap); in SetDeviceConfig() local 550 __func__, config.eapConfig.eap.c_str(), eapMethod, num); in SetDeviceConfig() 551 switch (eapMethod) { in SetDeviceConfig() 594 LOGE("%{public}s, invalid eapMethod:%{public}d", __func__, eapMethod); in SetDeviceConfig()
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-connectivity-kit/ |
H A D | js-apis-wifiManager.md | 456 | eapMethod | [EapMethod](#eapmethod10) | 是 | 否 | EAP认证方式。 | 457 | phase2Method | [Phase2Method](#phase2method10) | 是 | 否 | 第二阶段认证方式。只有eapMethod为EAP_PEAP或EAP_TTLS时需… 458 | identity | string | 是 | 否 | 身份信息。当eapMethod为EAP_PEAP、EAP_TLS或EAP_PWD时,该字段不能为空串。 | 460 | password | string | 是 | 否 | 密码。当eapMethod为EAP_PEAP或EAP_PWD时,该字段不能为空串。 | 464 | certEntry | Uint8Array | 是 | 是 | CA 证书内容。当eapMethod为EAP_TLS时,如果该字段为空,则clientCertAlias不能为空。 |
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-beta2/ |
H A D | js-apidiff-communicate.md | 131 | ohos.wifi | WifiEapConfig | eapMethod: EapMethod; | 新增 |
|
/ohos5.0/docs/en/application-dev/reference/apis-mdm-kit/ |
H A D | js-apis-enterprise-wifiManager.md | 211 | eapMethod | [EapMethod](#eapmethod) | Yes | EAP authentication method. …
|
/ohos5.0/docs/en/release-notes/api-diff/v3.2-beta2/ |
H A D | js-apidiff-communicate.md | 131 | ohos.wifi | WifiEapConfig | eapMethod: EapMethod; | Added|
|
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_testapp/doc/ApiDoc/WIFIManagerDoc/ |
H A D | WIFIManager功能界面使用说明文档.md | 63 >| eapMethod | **EapMethod** | 是 | 否 | EAP认证方式。 |
|
/ohos5.0/foundation/communication/wifi/wifi/test/fuzztest/wifi_sta/wifistaserver_fuzzer/ |
H A D | wifistaserver_fuzzer.cpp | 409 std::vector<std::string> eapMethod = {"SIM", "AKA", "AKA"}; in UpdateEapConfigTest() local
|
/ohos5.0/docs/en/application-dev/reference/apis-connectivity-kit/ |
H A D | js-apis-wifiManager.md | 456 | eapMethod | [EapMethod](#eapmethod10) | Yes| No| EAP authentication method.| 457 … Phase 2 authentication method. This parameter is mandatory only when **eapMethod** is **EAP_PEAP*… 458 | identity | string | Yes| No| Identity Information. When **eapMethod** is **EAP_PEAP**, **EAP_TLS*… 460 | password | string | Yes| No| Password. When **eapMethod** is **EAP_PEAP** or **EAP_PWD**, this pa… 464 | certEntry | Uint8Array | Yes| Yes| CA certificate content. If **eapMethod** is **EAP_TLS** and th…
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-beta1/ |
H A D | js-apidiff-customization.md | 106 |新增|NA|模块名: ohos.enterprise.wifiManager<br>类名: WifiEapProfile<br>方法 or 属性: eapMethod: EapMethod;|@o…
|
/ohos5.0/docs/en/release-notes/api-diff/v4.0-beta1/ |
H A D | js-apidiff-customization.md | 106 ….wifiManager<br>Class name: WifiEapProfile<br>Method or attribute name: eapMethod: EapMethod;|@oho…
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v3.2-Release/ |
H A D | js-apidiff-customization.md | 180 |新增|NA|类名:WifiEapProfile;<br>方法or属性:eapMethod: EapMethod;|@ohos.enterprise.wifiManager.d.ts|
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/monthly-202210/ |
H A D | js-apidiff-communication.md | 338 |新增|NA|模块名: ohos.wifiManager<br>类名: WifiEapConfig<br>方法名 or 属性名: eapMethod|@ohos.wifiManager.d.ts| 598 |删除|模块名: ohos.wifi<br>类名: WifiEapConfig<br>方法名 or 属性名:eapMethod|NA|@ohos.wifi.d.ts|
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-beta4/ |
H A D | js-apidiff-communication.md | 355 |新增|NA|模块名: ohos.wifiManager<br>类名: WifiEapConfig<br>方法名 or 属性名: eapMethod|@ohos.wifiManager.d.ts| 609 |删除|模块名: ohos.wifi<br>类名: WifiEapConfig<br>方法名 or 属性名:eapMethod|NA|@ohos.wifi.d.ts|
|
/ohos5.0/docs/en/release-notes/api-diff/v4.0-Release-vs-v3.2-Release/ |
H A D | js-apidiff-customization.md | 180 |Added|NA|Class name: WifiEapProfile;<br>Method or attribute name: eapMethod: EapMethod;|@ohos.ente…
|
/ohos5.0/docs/en/release-notes/api-diff/monthly-202210/ |
H A D | js-apidiff-communication.md | 338 …s.wifiManager<br>Class name: WifiEapConfig<br>Method or attribute name: eapMethod|@ohos.wifiManage… 598 |Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig<br>Method or attribute name: eapMethod…
|
/ohos5.0/docs/en/release-notes/api-diff/v3.2-beta4/ |
H A D | js-apidiff-communication.md | 355 …s.wifiManager<br>Class name: WifiEapConfig<br>Method or attribute name: eapMethod|@ohos.wifiManage… 609 |Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig<br>Method or attribute name: eapMethod…
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-Release/ |
H A D | js-apidiff-communication.md | 751 |新增|NA|类名:WifiEapConfig;<br>方法or属性:eapMethod: EapMethod;|@ohos.wifiManager.d.ts|
|
/ohos5.0/docs/en/release-notes/api-diff/v3.2-Release/ |
H A D | js-apidiff-communication.md | 751 |Added|NA|Class name: WifiEapConfig;<br>Method or attribute name: eapMethod: EapMethod;|@ohos.wifiM…
|