Home
last modified time | relevance | path

Searched refs:allowedPairwiseCiphers (Results 1 – 24 of 24) sorted by relevance

/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DWifiBackupDataV1Parser.java280 if (config.allowedPairwiseCiphers.length() in clearAnyKnownIssuesInParsedConfiguration()
282 config.allowedPairwiseCiphers.clear( in clearAnyKnownIssuesInParsedConfiguration()
284 config.allowedPairwiseCiphers.length()); in clearAnyKnownIssuesInParsedConfiguration()
373 byte[] allowedPairwiseCiphers = (byte[]) value; in parseWifiConfigurationFromXmlInternal()
374 configuration.allowedPairwiseCiphers = in parseWifiConfigurationFromXmlInternal()
375 BitSet.valueOf(allowedPairwiseCiphers); in parseWifiConfigurationFromXmlInternal()
H A DWifiConfigurationUtil.java324 if (!Objects.equals(existingConfig.allowedPairwiseCiphers, in hasCredentialChanged()
325 newConfig.allowedPairwiseCiphers)) { in hasCredentialChanged()
590 if (!validateBitSet(config.allowedPairwiseCiphers, in validateBitSets()
593 + config.allowedPairwiseCiphers); in validateBitSets()
H A DSupplicantStaNetworkHal.java359 BitSet allowedPairwiseCiphers = securityParams.getAllowedPairwiseCiphers(); in saveWifiConfiguration() local
360 if (allowedPairwiseCiphers.cardinality() != 0 in saveWifiConfiguration()
362 allowedPairwiseCiphers))) { in saveWifiConfiguration()
636 BitSet allowedPairwiseCiphers = securityParams.getAllowedPairwiseCiphers(); in saveSuiteBConfig() local
637 if (allowedPairwiseCiphers.cardinality() != 0 in saveSuiteBConfig()
639 allowedPairwiseCiphers))) { in saveSuiteBConfig()
H A DWifiMetrics.java5508 info.allowedPairwiseCiphers = bitSetToInt(config.allowedPairwiseCiphers); in createConfigInfo()
5825 .append(" allowed_pairwise_ciphers=").append(info.allowedPairwiseCiphers) in configInfoToString()
/aosp12/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
H A DWifiAssociationTest.java107 config.allowedPairwiseCiphers.set(PairwiseCipher.TKIP); in getConfig()
115 config.allowedPairwiseCiphers.set(PairwiseCipher.CCMP); in getConfig()
/aosp12/packages/modules/Wifi/framework/tests/src/android/net/wifi/
H A DSecurityParamsTest.java352 BitSet allowedPairwiseCiphers = new BitSet(); in testCommonSetterGetter() local
353 allowedPairwiseCiphers.set(PairwiseCipher.CCMP); in testCommonSetterGetter()
354 allowedPairwiseCiphers.set(PairwiseCipher.TKIP); in testCommonSetterGetter()
369 assertEquals(allowedPairwiseCiphers, params.getAllowedPairwiseCiphers()); in testCommonSetterGetter()
H A DWifiConfigurationTest.java567 assertTrue(config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.CCMP)); in testSetSecurityParamsForSae()
568 assertTrue(config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.GCMP_256)); in testSetSecurityParamsForSae()
586 assertTrue(config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.CCMP)); in testSetSecurityParamsForOwe()
587 assertTrue(config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.GCMP_256)); in testSetSecurityParamsForOwe()
607 assertTrue(config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.GCMP_256)); in testSetSecurityParamsForSuiteB()
627 assertTrue(config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.CCMP)); in testSetSecurityParamsForWpa3Enterprise()
628 assertTrue(config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.GCMP_256)); in testSetSecurityParamsForWpa3Enterprise()
H A DWifiNetworkSuggestionTest.java616 assertTrue(suggestion.wifiConfiguration.allowedPairwiseCiphers in testWifiNetworkSuggestionBuilderForWapiPskNetwork()
643 assertTrue(suggestion.wifiConfiguration.allowedPairwiseCiphers in testWifiNetworkSuggestionBuilderForWapiCertNetwork()
673 assertTrue(suggestion.wifiConfiguration.allowedPairwiseCiphers in testWifiNetworkSuggestionBuilderForWapiCertAutoNetwork()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DWifiBackupRestoreTest.java436 config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP); in createNetworkForConfigurationWithUnsupportedTag()
437 config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP); in createNetworkForConfigurationWithUnsupportedTag()
489 config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP); in createNetworkForConfigurationWithUnsupportedValuesInBitsetsInRestore()
490 config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP); in createNetworkForConfigurationWithUnsupportedValuesInBitsetsInRestore()
1119 config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP); in createNetworkForConfigurationWithV1_0Data()
1120 config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP); in createNetworkForConfigurationWithV1_0Data()
H A DSupplicantStaNetworkHalTest.java1119 config.allowedPairwiseCiphers.clear(WifiConfiguration.PairwiseCipher.GCMP_256); in testWifiConfigurationSaveLoad()
1124 config.allowedPairwiseCiphers.clear(WifiConfiguration.PairwiseCipher.SMS4); in testWifiConfigurationSaveLoad()
1129 config.allowedPairwiseCiphers.clear(WifiConfiguration.PairwiseCipher.GCMP_128); in testWifiConfigurationSaveLoad()
1344 BitSet allowedPairwiseCiphers = config.getDefaultSecurityParams() in putAllSupportingPairwiseCiphersAndReturnExpectedHalCiphersValue() local
1347 if (allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.GCMP_128) in putAllSupportingPairwiseCiphersAndReturnExpectedHalCiphersValue()
1355 if (allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.SMS4) in putAllSupportingPairwiseCiphersAndReturnExpectedHalCiphersValue()
1363 if (allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.GCMP_256) in putAllSupportingPairwiseCiphersAndReturnExpectedHalCiphersValue()
1371 if (allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.CCMP)) { in putAllSupportingPairwiseCiphersAndReturnExpectedHalCiphersValue()
H A DWifiConfigurationTestUtil.java720 assertEquals(expected.allowedPairwiseCiphers, actual.allowedPairwiseCiphers); in assertCommonConfigurationElementsEqual()
H A DNetworkListStoreDataTest.java822 assertTrue(retrievedNetworkList.get(0).allowedPairwiseCiphers in fixSaeNetworkWithLegacySecurity()
H A DWifiConfigurationUtilTest.java623 config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP + 4); in testValidateNegativeCases_InvalidPairwiseCipher()
H A DWifiMetricsTest.java3433 config.allowedPairwiseCiphers = intToBitSet(TEST_ALLOWED_PAIRWISE_CIPHERS); in createComplexWifiConfig()
3451 assertEquals(config.allowedPairwiseCiphers, intToBitSet(info.allowedPairwiseCiphers)); in assertConfigInfoEqualsWifiConfig()
H A DWifiConfigManagerTest.java1751 network.allowedPairwiseCiphers.clear(); in testUpdateSingleNetworkWithNullValues()
1782 network.allowedPairwiseCiphers.clear(); in testUpdateSingleNetworkWithNullValues()
H A DWifiNetworkSuggestionsManagerTest.java1074 legacyConfig.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP); in testGetNetworkSuggestionsForScanDetailSuccessWithOneMatchForLegacyConfig()
/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/
H A DWifiConfiguration.java1171 public BitSet allowedPairwiseCiphers; field in WifiConfiguration
2859 allowedPairwiseCiphers = new BitSet(); in WifiConfiguration()
3064 for (int pc = 0; pc < this.allowedPairwiseCiphers.size(); pc++) { in toString()
3065 if (this.allowedPairwiseCiphers.get(pc)) { in toString()
3575 allowedPairwiseCiphers = (BitSet) source.allowedPairwiseCiphers.clone(); in WifiConfiguration()
3669 writeBitSet(dest, allowedPairwiseCiphers); in writeToParcel()
3755 config.allowedPairwiseCiphers = readBitSet(in);
H A DSecurityParams.java232 config.allowedPairwiseCiphers = (BitSet) mAllowedPairwiseCiphers.clone(); in updateLegacyWifiConfiguration()
/aosp12/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/wifi/
H A DWifiConfigurationProvider.java243 wifiConf.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP); in updateForWPAConfiguration()
244 wifiConf.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP); in updateForWPAConfiguration()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/util/
H A DXmlUtil.java490 configuration.allowedPairwiseCiphers.toByteArray()); in writeCommonElementsToXml()
733 byte[] allowedPairwiseCiphers = (byte[]) value; in parseFromXml()
734 configuration.allowedPairwiseCiphers = in parseFromXml()
735 BitSet.valueOf(allowedPairwiseCiphers); in parseFromXml()
/aosp12/frameworks/opt/net/wifi/libs/WifiTrackerLib/src/com/android/wifitrackerlib/
H A DUtils.java165 && !config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.TKIP) in getSecurityTypesFromWifiConfiguration()
/aosp12/packages/modules/Wifi/framework/api/
H A Dcurrent.txt135 field @Deprecated @NonNull public java.util.BitSet allowedPairwiseCiphers;
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...
/aosp12/frameworks/opt/setupwizard/tools/docs/
H A Dandroid-22.txt17908 field public java.util.BitSet allowedPairwiseCiphers;