The EAP API provides functions for managing the EAP information.
Required Header
#include <wifi.h>
Overview
The EAP API provides functions for managing the EAP information. You can manage the EAP information using the functions.
Related Features
This API is related with the following features:
- http://tizen.org/feature/network.wifi
It is recommended to design applications with regard to features, for reliability.
You can check if a device supports the related features for this API by using System Information, and control your application's actions accordingly.
To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.
More details on featuring your application can be found from Feature List.
Functions |
int | wifi_ap_set_eap_passphrase (wifi_ap_h ap, const char *user_name, const char *password) TIZEN_DEPRECATED_API |
| Sets the passphrase of EAP.
|
int | wifi_ap_get_eap_passphrase (wifi_ap_h ap, char **user_name, bool *is_password_set) TIZEN_DEPRECATED_API |
| Gets the passphrase of EAP.
|
int | wifi_ap_get_eap_ca_cert_file (wifi_ap_h ap, char **file) TIZEN_DEPRECATED_API |
| Gets the CA Certificate of EAP.
|
int | wifi_ap_set_eap_ca_cert_file (wifi_ap_h ap, const char *file) TIZEN_DEPRECATED_API |
| Sets the CA Certificate of EAP.
|
int | wifi_ap_get_eap_client_cert_file (wifi_ap_h ap, char **file) TIZEN_DEPRECATED_API |
| Gets the Client Certificate of EAP.
|
int | wifi_ap_set_eap_client_cert_file (wifi_ap_h ap, const char *file) TIZEN_DEPRECATED_API |
| Sets the CA Certificate of EAP.
|
int | wifi_ap_get_eap_private_key_file (wifi_ap_h ap, char **file) TIZEN_DEPRECATED_API |
| Gets the private key file of EAP.
|
int | wifi_ap_set_eap_private_key_info (wifi_ap_h ap, const char *file, const char *password) TIZEN_DEPRECATED_API |
| Sets the private key information of EAP.
|
int | wifi_ap_get_eap_type (wifi_ap_h ap, wifi_eap_type_e *type) TIZEN_DEPRECATED_API |
| Gets the EAP type of Wi-Fi.
|
int | wifi_ap_set_eap_type (wifi_ap_h ap, wifi_eap_type_e type) TIZEN_DEPRECATED_API |
| Sets the EAP type of Wi-Fi.
|
int | wifi_ap_get_eap_auth_type (wifi_ap_h ap, wifi_eap_auth_type_e *type) TIZEN_DEPRECATED_API |
| Gets the type of EAP phase2 authentication of Wi-Fi.
|
int | wifi_ap_set_eap_auth_type (wifi_ap_h ap, wifi_eap_auth_type_e type) TIZEN_DEPRECATED_API |
| Sets the type of EAP phase2 authentication of Wi-Fi.
|
Enumeration Type Documentation
Enumeration for EAP phase2 authentication type.
- Deprecated:
- Deprecated since 3.0. Use wifi_manager_eap_auth_type_e instead.
- Since :
- 2.3
- Enumerator:
WIFI_EAP_AUTH_TYPE_NONE |
EAP phase2 authentication none
|
WIFI_EAP_AUTH_TYPE_PAP |
EAP phase2 authentication PAP
|
WIFI_EAP_AUTH_TYPE_MSCHAP |
EAP phase2 authentication MSCHAP
|
WIFI_EAP_AUTH_TYPE_MSCHAPV2 |
EAP phase2 authentication MSCHAPv2
|
WIFI_EAP_AUTH_TYPE_GTC |
EAP phase2 authentication GTC
|
WIFI_EAP_AUTH_TYPE_MD5 |
EAP phase2 authentication MD5
|
Enumeration for EAP type.
- Deprecated:
- Deprecated since 3.0. Use wifi_manager_eap_type_e instead.
- Since :
- 2.3
- Enumerator:
WIFI_EAP_TYPE_PEAP |
EAP PEAP type
|
WIFI_EAP_TYPE_TLS |
EAP TLS type
|
WIFI_EAP_TYPE_TTLS |
EAP TTLS type
|
WIFI_EAP_TYPE_SIM |
EAP SIM type
|
WIFI_EAP_TYPE_AKA |
EAP AKA type
|
Function Documentation
Gets the type of EAP phase2 authentication of Wi-Fi.
- Deprecated:
- Deprecated since 3.0. Use wifi_manager_ap_get_eap_auth_type() instead.
- Since :
- 2.3
- Parameters:
-
[in] | ap | The access point handle |
[out] | type | The type of EAP phase2 authentication |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Gets the CA Certificate of EAP.
- Deprecated:
- Deprecated since 3.0. Use wifi_manager_ap_get_eap_ca_cert_file() instead.
- Since :
- 2.3
- Parameters:
-
[in] | ap | The access point handle |
[out] | file | The file path of CA Certificate |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Gets the Client Certificate of EAP.
- Deprecated:
- Deprecated since 3.0. Use wifi_manager_ap_get_eap_client_cert_file() instead.
- Since :
- 2.3
- Parameters:
-
[in] | ap | The access point handle |
[out] | file | The file path of Client Certificate |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Gets the passphrase of EAP.
- Deprecated:
- Deprecated since 3.0. Use wifi_manager_ap_get_eap_passphrase() instead.
- Since :
- 2.3
- Parameters:
-
[in] | ap | The access point handle |
[out] | user_name | The user name |
[out] | is_password_set | ture if password is set, otherwise flase if password is not set. |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Gets the private key file of EAP.
- Deprecated:
- Deprecated since 3.0. Use wifi_manager_ap_get_eap_private_key_file() instead.
- Since :
- 2.3
- Parameters:
-
[in] | ap | The access point handle |
[out] | file | The file path of private key |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Gets the EAP type of Wi-Fi.
- Deprecated:
- Deprecated since 3.0. Use wifi_manager_ap_get_eap_type() instead.
- Since :
- 2.3
- Parameters:
-
[in] | ap | The access point handle |
[out] | type | The type of EAP |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Sets the type of EAP phase2 authentication of Wi-Fi.
- Deprecated:
- Deprecated since 3.0. Use wifi_manager_ap_set_eap_auth_type() instead.
- Since :
- 2.3
- Parameters:
-
[in] | ap | The access point handle |
[in] | type | The type of EAP phase2 authentication |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Sets the CA Certificate of EAP.
- Deprecated:
- Deprecated since 3.0. Use wifi_manager_ap_set_eap_ca_cert_file() instead.
- Since :
- 2.3
- Parameters:
-
[in] | ap | The access point handle |
[in] | file | The file path of CA Certificate |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Sets the CA Certificate of EAP.
- Deprecated:
- Deprecated since 3.0. Use wifi_manager_ap_set_eap_client_cert_file() instead.
- Since :
- 2.3
- Parameters:
-
[in] | ap | The access point handle |
[in] | file | The file path of Client Certificate |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Sets the passphrase of EAP.
- Deprecated:
- Deprecated since 3.0. Use wifi_manager_ap_set_eap_passphrase() instead.
You can set one of user_name and password as NULL
. In this case, the value of a parameter which is set as NULL
will be the previous value. But it is not allowed that both user_name and password are set as NULL
.
- Since :
- 2.3
- Parameters:
-
[in] | ap | The access point handle |
[in] | user_name | The user name
This value can be NULL . |
[in] | password | The password
This value can be NULL . |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Sets the private key information of EAP.
- Deprecated:
- Deprecated since 3.0. Use wifi_manager_ap_set_eap_private_key_info() instead.
- Since :
- 2.3
- Parameters:
-
[in] | ap | The access point handle |
[in] | file | The file path of private key |
[in] | password | The password |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Sets the EAP type of Wi-Fi.
- Deprecated:
- Deprecated since 3.0. Use wifi_manager_ap_set_eap_type() instead.
- Since :
- 2.3
- Parameters:
-
[in] | ap | The access point handle |
[in] | type | The type of EAP |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-