WPA2EnterpriseProfile
NSString * ssid;
NSString * outerIdentity;
NSString * username;
NSArray <NSString *> * trustedServerNames;
NSString * installedBy;
NSDate * installed;
Variable
Description
Example
ssid
Wi-Fi network SSID to connect to
securewifi.io
outerIdentity
The identity string to be used in the EAP-Identity/Response packet during outer EAP authentication.
username
username associated to the profile
YYYYYZZZXXX1
trustedServerNames
An array of server certificate common name strings used to verify a server's certificate
["get.securewifi.io"]
installedBy
the bundleId of the app installed the profile
com.cloud4wi.c4wiapp
installed
date when the profile has been installed
2022-07-08 08:08:44 +0000
Example
var profiles: Array<WPA2EnterpriseProfile>
profiles = cloud4WiSDKWiFi.getCreatedWPA2EnterpriseProfiles()
var profile : WPA2EnterpriseProfile
profile = profiles[0]
print(profile.ssid)
print(profile.outerIdentity)
print(profile.username)
print(profile.trustedServerNames)
print(profile.installedBy)
print(profile.installed)
output
Optional("securewifi.io") <- ssid
Optional("[email protected]") <- outerIdentity
Optional("YYYYYZZZXXX1") <- username
Optional(["get.securewifi.io"]) <- trustedServerNames
Optional("com.cloud4wi.c4wiapp") <- installedBy
Optional(2022-07-08 08:08:44 +0000) <- installed
Last updated
Was this helpful?