Home
last modified time | relevance | path

Searched refs:SuiteBCipher (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiKeyStoreTest.java257 WifiConfiguration.SuiteBCipher.ECDHE_RSA); in testConfigureSuiteBRsa3072()
260 assertTrue(savedNetwork.allowedSuiteBCiphers.get(WifiConfiguration.SuiteBCipher.ECDHE_RSA)); in testConfigureSuiteBRsa3072()
285 WifiConfiguration.SuiteBCipher.ECDHE_ECDSA); in testConfigureSuiteBEcdsa()
289 savedNetwork.allowedSuiteBCiphers.get(WifiConfiguration.SuiteBCipher.ECDHE_ECDSA)); in testConfigureSuiteBEcdsa()
313 WifiConfiguration.SuiteBCipher.ECDHE_ECDSA); in testConfigurationFailureSuiteB()
339 WifiConfiguration.SuiteBCipher.ECDHE_RSA); in testConfigurationFailureSuiteBNon3072Rsa()
366 WifiConfiguration.SuiteBCipher.ECDHE_RSA); in testConfigurationFailureSuiteB2048Rsa()
397 WifiConfiguration.SuiteBCipher.ECDHE_RSA); in testConfigurationFailureSuiteBNon3072RsaInList()
429 WifiConfiguration.SuiteBCipher.ECDHE_RSA); in testConfigurationFailureSuiteBRsaAndEcdsaInList()
456 WifiConfiguration.SuiteBCipher.ECDHE_ECDSA); in testConfigureFailureSuiteBEcdsa256()
[all …]
DWifiConfigurationTestUtil.java475 return createEapSuiteBNetwork(WifiConfiguration.SuiteBCipher.ECDHE_RSA); in createEapSuiteBNetwork()
486 if (signatureType == WifiConfiguration.SuiteBCipher.ECDHE_ECDSA) { in createEapSuiteBNetwork()
/packages/modules/Wifi/framework/java/android/net/wifi/
DSecurityParams.java28 import android.net.wifi.WifiConfiguration.SuiteBCipher;
322 mAllowedSuiteBCiphers.set(SuiteBCipher.ECDHE_ECDSA); in enableSuiteBCiphers()
324 mAllowedSuiteBCiphers.clear(SuiteBCipher.ECDHE_ECDSA); in enableSuiteBCiphers()
328 mAllowedSuiteBCiphers.set(SuiteBCipher.ECDHE_RSA); in enableSuiteBCiphers()
330 mAllowedSuiteBCiphers.clear(SuiteBCipher.ECDHE_RSA); in enableSuiteBCiphers()
510 if (sbc < SuiteBCipher.strings.length) { in toString()
511 sbuf.append(SuiteBCipher.strings[sbc]); in toString()
DWifiConfiguration.java437 public static class SuiteBCipher { class in WifiConfiguration
438 private SuiteBCipher() { } in SuiteBCipher() method in WifiConfiguration.SuiteBCipher
912 .anyMatch(params -> params.getAllowedSuiteBCiphers().get(SuiteBCipher.ECDHE_ECDSA)); in isSuiteBCipherEcdheEcdsaEnabled()
923 .anyMatch(params -> params.getAllowedSuiteBCiphers().get(SuiteBCipher.ECDHE_RSA)); in isSuiteBCipherEcdheRsaEnabled()
3103 if (sbc < SuiteBCipher.strings.length) { in toString()
3104 sbuf.append(SuiteBCipher.strings[sbc]); in toString()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiKeyStore.java365 clientCertType == WifiConfiguration.SuiteBCipher.ECDHE_ECDSA, in updateNetworkKeys()
366 clientCertType == WifiConfiguration.SuiteBCipher.ECDHE_RSA); in updateNetworkKeys()
412 return WifiConfiguration.SuiteBCipher.ECDHE_RSA; in getSuiteBCipherFromCert()
427 return WifiConfiguration.SuiteBCipher.ECDHE_ECDSA; in getSuiteBCipherFromCert()
DSupplicantStaNetworkHal.java653 if (allowedSuiteBCiphers.get(WifiConfiguration.SuiteBCipher.ECDHE_RSA)) { in saveSuiteBConfig()
658 } else if (allowedSuiteBCiphers.get(WifiConfiguration.SuiteBCipher.ECDHE_ECDSA)) { in saveSuiteBConfig()