Home
last modified time | relevance | path

Searched refs:allowedKeyManagement (Results 1 – 25 of 55) sorted by relevance

123

/frameworks/base/wifi/tests/src/android/net/wifi/
DWifiConfigurationTest.java103 config.allowedKeyManagement.clear(); in testIsOpenNetwork_IsOpen_NullWepKeys()
112 config.allowedKeyManagement.clear(); in testIsOpenNetwork_IsOpen_ZeroLengthWepKeysArray()
121 config.allowedKeyManagement.clear(); in testIsOpenNetwork_IsOpen_NullWepKeysArray()
130 config.allowedKeyManagement.clear(); in testIsOpenNetwork_NotOpen_HasWepKeys()
139 config.allowedKeyManagement.clear(); in testIsOpenNetwork_NotOpen_HasNullWepKeyFollowedByNonNullKey()
153 config.allowedKeyManagement.clear(); in testIsOpenNetwork_NotOpen_HasAuthType()
154 config.allowedKeyManagement.set(keyMgmt); in testIsOpenNetwork_NotOpen_HasAuthType()
165 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in testIsOpenNetwork_NotOpen_HasAuthTypeNoneAndMore()
166 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_EAP); in testIsOpenNetwork_NotOpen_HasAuthTypeNoneAndMore()
217 config.allowedKeyManagement.set(KeyMgmt.WPA_EAP); in testGetKeyIdForCredentials()
[all …]
DWifiNetworkSuggestionTest.java56 assertTrue(suggestion.wifiConfiguration.allowedKeyManagement in testWifiNetworkSuggestionBuilderForOpenNetworkWithReqAppInteraction()
84 assertTrue(suggestion.wifiConfiguration.allowedKeyManagement in testWifiNetworkSuggestionBuilderForWpa2EapNetworkWithPriorityAndReqAppInteraction()
114 assertTrue(suggestion.wifiConfiguration.allowedKeyManagement in testWifiNetworkSuggestionBuilderForWpa2PskNetworkWithMeteredAndReqUserInteraction()
144 assertTrue(suggestion.wifiConfiguration.allowedKeyManagement in testWifiNetworkSuggestionBuilderForWpa2PskNetworkWithNotMeteredAndReqUserInteraction()
171 assertTrue(suggestion.wifiConfiguration.allowedKeyManagement in testWifiNetworkSuggestionBuilderForEnhancedOpenNetworkWithBssid()
193 assertTrue(suggestion.wifiConfiguration.allowedKeyManagement in testWifiNetworkSuggestionBuilderForWpa3PskNetwork()
221 assertTrue(suggestion.wifiConfiguration.allowedKeyManagement in testWifiNetworkSuggestionBuilderForWpa3EapNetwork()
281 assertTrue(suggestion.wifiConfiguration.allowedKeyManagement in testWifiNetworkSuggestionBuilderForWapiPskNetwork()
307 assertTrue(suggestion.wifiConfiguration.allowedKeyManagement in testWifiNetworkSuggestionBuilderForWapiCertNetwork()
336 assertTrue(suggestion.wifiConfiguration.allowedKeyManagement in testWifiNetworkSuggestionBuilderForWapiCertAutoNetwork()
[all …]
DWifiNetworkAgentSpecifierTest.java96 wifiConfiguration2.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in testWifiNetworkAgentSpecifierDoesNotEqualsWhenKeyMgmtDifferent()
192 wificonfigurationNetworkSpecifier.allowedKeyManagement in testWifiNetworkAgentSpecifierSatisfiesNetworkSpecifierWithSsidPattern()
220 wificonfigurationNetworkSpecifier.allowedKeyManagement in testWifiNetworkAgentSpecifierSatisfiesNetworkSpecifierWithBssidPattern()
248 wificonfigurationNetworkSpecifier.allowedKeyManagement in testWifiNetworkAgentSpecifierSatisfiesNetworkSpecifierWithSsidAndBssidPattern()
279 wificonfigurationNetworkSpecifier.allowedKeyManagement in testWifiNetworkAgentSpecifierDoesNotSatisfyNetworkSpecifierWithSsidPattern()
311 wificonfigurationNetworkSpecifier.allowedKeyManagement in testWifiNetworkAgentSpecifierDoesNotSatisfyNetworkSpecifierWithBssidPattern()
343 wificonfigurationNetworkSpecifier.allowedKeyManagement in testWifiNetworkAgentSpecifierDoesNotSatisfyNetworkSpecifierWithSsidAndBssidPattern()
371 wificonfigurationNetworkSpecifier.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in testWifiNetworkAgentSpecifierDoesNotSatisfyNetworkSpecifierWithDifferentKeyMgmt()
386 wifiConfiguration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in createDefaultWifiConfiguration()
DWifiNetworkSpecifierTest.java68 assertTrue(wifiNetworkSpecifier.wifiConfiguration.allowedKeyManagement in testWifiNetworkSpecifierBuilderForOpenNetworkWithSsidPattern()
94 assertTrue(wifiNetworkSpecifier.wifiConfiguration.allowedKeyManagement in testWifiNetworkSpecifierBuilderForWpa2PskNetworkWithBssidPattern()
127 assertTrue(wifiNetworkSpecifier.wifiConfiguration.allowedKeyManagement in testWifiNetworkSpecifierBuilderForWpa2EapHiddenNetworkWithSsidAndBssid()
129 assertTrue(wifiNetworkSpecifier.wifiConfiguration.allowedKeyManagement in testWifiNetworkSpecifierBuilderForWpa2EapHiddenNetworkWithSsidAndBssid()
360 wifiConfiguration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in testWifiNetworkSpecifierParcel()
391 wifiConfiguration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in testWifiNetworkSpecifierDoesNotSatisfyNullAndAllMatch()
412 wifiConfiguration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in testWifiNetworkSpecifierSatisfiesSame()
439 wifiConfiguration1.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in testWifiNetworkSpecifierDoesNotSatisfyWhenKeyMgmtDifferent()
449 wifiConfiguration2.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in testWifiNetworkSpecifierDoesNotSatisfyWhenKeyMgmtDifferent()
468 wifiConfiguration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in testWifiNetworkSpecifierDoesNotSatisfyWhenSsidDifferent()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiConfigurationUtil.java91 return config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_PSK); in isConfigForPskNetwork()
98 return config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WAPI_PSK); in isConfigForWapiPskNetwork()
105 return config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WAPI_CERT); in isConfigForWapiCertNetwork()
112 return config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.SAE); in isConfigForSaeNetwork()
119 return config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.OWE); in isConfigForOweNetwork()
126 return (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_EAP) in isConfigForEapNetwork()
127 || config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.IEEE8021X)); in isConfigForEapNetwork()
134 return config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.SUITE_B_192); in isConfigForEapSuiteBNetwork()
141 return (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.NONE) in isConfigForWepNetwork()
268 if (!Objects.equals(existingConfig.allowedKeyManagement, in hasCredentialChanged()
[all …]
DWifiBackupRestore.java634 configuration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in createWifiConfiguration()
635 configuration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_EAP); in createWifiConfiguration()
648 configuration.allowedKeyManagement.set( in createWifiConfiguration()
651 configuration.allowedKeyManagement.set( in createWifiConfiguration()
654 configuration.allowedKeyManagement.set( in createWifiConfiguration()
657 configuration.allowedKeyManagement.set( in createWifiConfiguration()
660 configuration.allowedKeyManagement.set( in createWifiConfiguration()
663 configuration.allowedKeyManagement.set( in createWifiConfiguration()
DNetworkListStoreData.java288 if (configuration.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.SAE)) { in parseNetwork()
294 configuration.allowedKeyManagement.clear(); in parseNetwork()
295 configuration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in parseNetwork()
DWifiBackupDataV1Parser.java237 if (config.allowedKeyManagement.length() in clearAnyKnownIssuesInParsedConfiguration()
239 config.allowedKeyManagement.clear( in clearAnyKnownIssuesInParsedConfiguration()
241 config.allowedKeyManagement.length()); in clearAnyKnownIssuesInParsedConfiguration()
334 configuration.allowedKeyManagement = BitSet.valueOf(allowedKeyMgmt); in parseWifiConfigurationFromXmlInternal()
DSupplicantStaIfaceCallbackV1_2Impl.java175 newWifiConfiguration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.SAE); in onDppSuccessConfigReceived()
178 newWifiConfiguration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in onDppSuccessConfigReceived()
/frameworks/base/wifi/java/android/net/wifi/
DWifiConfiguration.java473 allowedKeyManagement.clear(); in setSecurityParams()
483 allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in setSecurityParams()
486 allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in setSecurityParams()
491 allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in setSecurityParams()
494 allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_EAP); in setSecurityParams()
495 allowedKeyManagement.set(WifiConfiguration.KeyMgmt.IEEE8021X); in setSecurityParams()
499 allowedKeyManagement.set(WifiConfiguration.KeyMgmt.SAE); in setSecurityParams()
508 allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_EAP); in setSecurityParams()
509 allowedKeyManagement.set(WifiConfiguration.KeyMgmt.IEEE8021X); in setSecurityParams()
510 allowedKeyManagement.set(WifiConfiguration.KeyMgmt.SUITE_B_192); in setSecurityParams()
[all …]
DWifiNetworkAgentSpecifier.java102 checkNotNull(ns.wifiConfiguration.allowedKeyManagement); in satisfiesNetworkSpecifier()
105 checkNotNull(this.mWifiConfiguration.allowedKeyManagement); in satisfiesNetworkSpecifier()
119 if (!ns.wifiConfiguration.allowedKeyManagement.equals( in satisfiesNetworkSpecifier()
120 this.mWifiConfiguration.allowedKeyManagement)) { in satisfiesNetworkSpecifier()
131 mWifiConfiguration.allowedKeyManagement); in hashCode()
145 && Objects.equals(this.mWifiConfiguration.allowedKeyManagement, in equals()
146 lhs.mWifiConfiguration.allowedKeyManagement); in equals()
DWifiNetworkSuggestion.java807 wifiConfiguration.allowedKeyManagement, wifiConfiguration.getKey()); in hashCode()
828 && Objects.equals(this.wifiConfiguration.allowedKeyManagement, in equals()
829 lhs.wifiConfiguration.allowedKeyManagement) in equals()
883 return wifiConfiguration.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.OWE); in isEnhancedOpen()
DWifiNetworkSpecifier.java519 wifiConfiguration.allowedKeyManagement); in hashCode()
537 && Objects.equals(this.wifiConfiguration.allowedKeyManagement, in equals()
538 lhs.wifiConfiguration.allowedKeyManagement); in equals()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiConfigurationTestUtil.java148 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in generateWifiConfig()
151 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in generateWifiConfig()
155 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.SAE); in generateWifiConfig()
160 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.OWE); in generateWifiConfig()
165 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_EAP); in generateWifiConfig()
166 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.IEEE8021X); in generateWifiConfig()
173 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_EAP); in generateWifiConfig()
174 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.IEEE8021X); in generateWifiConfig()
175 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.SUITE_B_192); in generateWifiConfig()
180 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WAPI_PSK); in generateWifiConfig()
[all …]
DWifiBackupRestoreTest.java383 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in createNetworkForConfigurationWithUnsupportedTag()
436 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in createNetworkForConfigurationWithUnsupportedValuesInBitsetsInRestore()
963 expectedConfiguration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in testSingleNetworkSupplicantBackupRestoreWithUnknownEAPKey()
1050 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in createNetworkForConfigurationWithV1_0Data()
1120 String allowedKeyManagement = ""; in writeConfigurationToWpaSupplicantConf() local
1121 if (configuration.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.NONE)) { in writeConfigurationToWpaSupplicantConf()
1122 allowedKeyManagement += "NONE"; in writeConfigurationToWpaSupplicantConf()
1124 if (configuration.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_PSK)) { in writeConfigurationToWpaSupplicantConf()
1125 allowedKeyManagement += "WPA-PSK "; in writeConfigurationToWpaSupplicantConf()
1127 if (configuration.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_EAP)) { in writeConfigurationToWpaSupplicantConf()
[all …]
DDppManagerTest.java195 selectedNetwork.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in testStartDppAsConfiguratorInitiatorFailAddPeer()
243 selectedNetwork.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in testStartDppAsConfiguratorInitiatorFailStart()
289 selectedNetwork.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in testStartDppAsConfiguratorInitiatorStartCorrectlyWpa2Psk()
314 selectedNetwork.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.SAE); in testStartDppAsConfiguratorInitiatorStartCorrectlyWpa3Sae()
338 selectedNetwork.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in testStartDppAsConfiguratorInitiatorFailOpenNetwork()
362 selectedNetwork.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_EAP); in testStartDppAsConfiguratorInitiatorFailEapNetwork()
400 selectedNetwork.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.SAE); in testStartDppAsConfiguratorInitiatorStartCorrectlyAndRejectConcurrentRequest()
453 selectedNetwork.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.SAE); in testStartDppAsConfiguratorInitiatorStartOnSuccessCallback()
516 selectedNetwork.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.SAE); in testStartDppAsEnrolleeInitiatorStartCorrectlyOnSuccessCallback()
547 selectedNetwork.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.SAE); in testStartDppAsConfiguratorInitiatorStartOnFailureCallback()
[all …]
DWifiConfigurationUtilTest.java418 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.IEEE8021X); in testValidateNegativeCases_BadKeyMgmtPskEap()
430 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in testValidateNegativeCases_BadKeyMgmtOpenPsk()
442 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.IEEE8021X); in testValidateNegativeCases_BadKeyMgmt()
471 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.FT_EAP + 1); in testValidateNegativeCases_InvalidKeyMgmt()
483 config.allowedKeyManagement.clear(); in testValidateNegativeCases_InvalidKeyMgmtWithPreSharedKey()
484 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.OSEN); in testValidateNegativeCases_InvalidKeyMgmtWithPreSharedKey()
487 assertTrue(config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_PSK)); in testValidateNegativeCases_InvalidKeyMgmtWithPreSharedKey()
488 assertFalse(config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.OSEN)); in testValidateNegativeCases_InvalidKeyMgmtWithPreSharedKey()
DClientModeImplTest.java876 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in initializeMocksForAddedNetwork()
1877 config.allowedKeyManagement.set(KeyMgmt.IEEE8021X); in testEapSimErrorVendorSpecific()
1921 config.allowedKeyManagement.set(KeyMgmt.IEEE8021X); in testEapTlsErrorVendorSpecific()
2860 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in testConnectedMacRandomizationRandomizationNoneDifferentMac()
2887 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in testConnectedMacRandomizationRandomizationNoneSameMac()
2930 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in testDoNotSetMacWhenInvalid()
4430 BitSet allowedKeyManagement = mock(BitSet.class); in testNoWpa3UpgradeWhenOverlaysAreOff() local
4431 config.allowedKeyManagement = allowedKeyManagement; in testNoWpa3UpgradeWhenOverlaysAreOff()
4432 when(config.allowedKeyManagement.get(eq(WifiConfiguration.KeyMgmt.WPA_PSK))).thenReturn( in testNoWpa3UpgradeWhenOverlaysAreOff()
4459 BitSet allowedKeyManagement = mock(BitSet.class); in testWpa3UpgradeOffload() local
[all …]
DConfigurationMapTest.java295 config.allowedKeyManagement.clear(); in testScanResultDoesNotMatchWithOtherNetworks()
296 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); in testScanResultDoesNotMatchWithOtherNetworks()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
DScanResultUtilTest.java101 assertTrue(config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.NONE)); in testNetworkCreationFromScanResult()
106 assertTrue(config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.NONE)); in testNetworkCreationFromScanResult()
113 assertTrue(config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_PSK)); in testNetworkCreationFromScanResult()
118 assertTrue(config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_EAP)); in testNetworkCreationFromScanResult()
119 assertTrue(config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.IEEE8021X)); in testNetworkCreationFromScanResult()
124 assertTrue(config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WAPI_PSK)); in testNetworkCreationFromScanResult()
129 assertTrue(config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WAPI_CERT)); in testNetworkCreationFromScanResult()
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
DWifiConfigurationHelper.java61 config.allowedKeyManagement.set(KeyMgmt.NONE); in createOpenConfig()
81 config.allowedKeyManagement.set(KeyMgmt.NONE); in createWepConfig()
102 config.allowedKeyManagement.set(KeyMgmt.WPA_PSK); in createPskConfig()
125 config.allowedKeyManagement.set(KeyMgmt.WPA_EAP); in createEapConfig()
126 config.allowedKeyManagement.set(KeyMgmt.IEEE8021X); in createEapConfig()
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/
DWifiClientTest.java118 config.allowedKeyManagement.set(KeyMgmt.NONE); in testAddRemoveNetwork()
155 config.allowedKeyManagement.set(KeyMgmt.NONE); in testEnableDisableNetwork()
205 config.allowedKeyManagement.set(KeyMgmt.NONE); in testSaveConfig()
/frameworks/opt/net/wifi/libs/WifiTrackerLib/src/com/android/wifitrackerlib/
DUtils.java134 if (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.SAE)) { in getSecurityTypeFromWifiConfiguration()
137 if (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_PSK)) { in getSecurityTypeFromWifiConfiguration()
140 if (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.SUITE_B_192)) { in getSecurityTypeFromWifiConfiguration()
143 if (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_EAP) in getSecurityTypeFromWifiConfiguration()
144 || config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.IEEE8021X)) { in getSecurityTypeFromWifiConfiguration()
147 if (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.OWE)) { in getSecurityTypeFromWifiConfiguration()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DScanResultUtil.java187 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WAPI_PSK); in setAllowedKeyManagementFromScanResult()
189 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WAPI_CERT); in setAllowedKeyManagementFromScanResult()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DOsuNetworkConnection.java194 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); in connect()
197 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.OSEN); in connect()

123