The Security Information API provides functions for managing the Security information.
Required Header
#include <wifi-manager.h>
Overview
The Security Information API provides functions for managing the Security information. You can manage the Security information using the functions.
Related Features
This API is related with the following features:
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 Element.
Enumeration Type Documentation
Enumeration for Wi-Fi encryption type.
The following encryption modes are used in infrastructure and ad-hoc mode.
- Since :
- 3.0
- Enumerator:
WIFI_MANAGER_ENCRYPTION_TYPE_NONE |
Encryption disabled
|
WIFI_MANAGER_ENCRYPTION_TYPE_WEP |
WEP
|
WIFI_MANAGER_ENCRYPTION_TYPE_TKIP |
TKIP
|
WIFI_MANAGER_ENCRYPTION_TYPE_AES |
AES
|
WIFI_MANAGER_ENCRYPTION_TYPE_TKIP_AES_MIXED |
TKIP and AES are both supported
|
Enumeration for Wi-Fi security type.
The following security modes are used in infrastructure and ad-hoc mode. For now all EAP security mechanisms are provided only in infrastructure mode.
- Since :
- 3.0
- Enumerator:
WIFI_MANAGER_SECURITY_TYPE_NONE |
Security disabled
|
WIFI_MANAGER_SECURITY_TYPE_WEP |
WEP
|
WIFI_MANAGER_SECURITY_TYPE_WPA_PSK |
WPA-PSK
|
WIFI_MANAGER_SECURITY_TYPE_WPA2_PSK |
WPA2-PSK
|
WIFI_MANAGER_SECURITY_TYPE_EAP |
EAP
|
WIFI_MANAGER_SECURITY_TYPE_WPA_FT_PSK |
FT-PSK (Since 5.0)
|
Function Documentation
Gets the Wi-Fi encryption type.
- Since :
- 3.0
- Parameters:
-
[in] | ap | The access point handle |
[out] | type | The type of Wi-Fi encryption |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Gets the Wi-Fi security mode.
- Since :
- 3.0
- Parameters:
-
[in] | ap | The access point handle |
[out] | type | The type of Wi-Fi security |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Checks whether the passphrase is required or not.
- Since :
- 3.0
- Parameters:
-
[in] | ap | The access point handle |
[out] | required | true if passphrase is required, false if passphrase is not required. |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Checks whether the WPS(Wi-Fi Protected Setup) is supported or not.
- Since :
- 3.0
- Parameters:
-
[in] | ap | The access point handle |
[out] | supported | true if WPS is supported, otherwise false is WPS is not supported. |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
- See also:
- wifi_manager_connect_by_wps_pbc()
-
wifi_manager_connect_by_wps_pin()
Sets the Wi-Fi encryption type.
- Since :
- 3.0
- Parameters:
-
[in] | ap | The access point handle |
[in] | type | The type of Wi-Fi encryption |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Sets the passphrase.
- Since :
- 3.0
- Parameters:
-
[in] | ap | The access point handle |
[in] | passphrase | The passphrase of access point |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-
Sets the Wi-Fi security mode.
- Since :
- 3.0
- Parameters:
-
[in] | ap | The access point handle |
[in] | type | The type of Wi-Fi security |
- Returns:
- 0 on success, otherwise negative error value
- Return values:
-