Home
last modified time | relevance | path

Searched refs:allowedSuiteBCiphers (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Wifi/framework/java/android/net/wifi/
DWifiConfiguration.java1191 public BitSet allowedSuiteBCiphers; field in WifiConfiguration
2862 allowedSuiteBCiphers = new BitSet(); in WifiConfiguration()
3100 for (int sbc = 0; sbc < this.allowedSuiteBCiphers.size(); sbc++) { in toString()
3101 if (this.allowedSuiteBCiphers.get(sbc)) { in toString()
3578 allowedSuiteBCiphers = (BitSet) source.allowedSuiteBCiphers.clone(); in WifiConfiguration()
3672 writeBitSet(dest, allowedSuiteBCiphers); in writeToParcel()
3758 config.allowedSuiteBCiphers = readBitSet(in);
DSecurityParams.java235 config.allowedSuiteBCiphers = (BitSet) mAllowedSuiteBCiphers.clone(); in updateLegacyWifiConfiguration()
/packages/modules/Wifi/service/java/com/android/server/wifi/util/
DXmlUtil.java496 configuration.allowedSuiteBCiphers.toByteArray()); in writeCommonElementsToXml()
743 byte[] allowedSuiteBCiphers = (byte[]) value; in parseFromXml()
744 configuration.allowedSuiteBCiphers = in parseFromXml()
745 BitSet.valueOf(allowedSuiteBCiphers); in parseFromXml()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiConfigurationUtil.java336 if (!Objects.equals(existingConfig.allowedSuiteBCiphers, in hasCredentialChanged()
337 newConfig.allowedSuiteBCiphers)) { in hasCredentialChanged()
DSupplicantStaNetworkHal.java652 BitSet allowedSuiteBCiphers = securityParams.getAllowedSuiteBCiphers(); in saveSuiteBConfig() local
653 if (allowedSuiteBCiphers.get(WifiConfiguration.SuiteBCipher.ECDHE_RSA)) { in saveSuiteBConfig()
658 } else if (allowedSuiteBCiphers.get(WifiConfiguration.SuiteBCipher.ECDHE_ECDSA)) { in saveSuiteBConfig()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiKeyStoreTest.java260 assertTrue(savedNetwork.allowedSuiteBCiphers.get(WifiConfiguration.SuiteBCipher.ECDHE_RSA)); in testConfigureSuiteBRsa3072()
289 savedNetwork.allowedSuiteBCiphers.get(WifiConfiguration.SuiteBCipher.ECDHE_ECDSA)); in testConfigureSuiteBEcdsa()
/packages/modules/Wifi/framework/api/
Dcurrent.txt137 field @Deprecated @NonNull public java.util.BitSet allowedSuiteBCiphers;