Home
last modified time | relevance | path

Searched refs:trustCertInfo (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DPasspointProvisioner.java893 Map<String, byte[]> trustCertInfo = passpointConfig.getTrustRootCertList(); in retrieveTrustRootCerts() local
894 if (trustCertInfo == null || trustCertInfo.isEmpty()) { in retrieveTrustRootCerts()
901 allTrustCerts.put(OsuServerConnection.TRUST_CERT_TYPE_AAA, trustCertInfo); in retrieveTrustRootCerts()
906 trustCertInfo = new HashMap<>(); in retrieveTrustRootCerts()
907 trustCertInfo.put( in retrieveTrustRootCerts()
911 allTrustCerts.put(OsuServerConnection.TRUST_CERT_TYPE_REMEDIATION, trustCertInfo); in retrieveTrustRootCerts()
924 trustCertInfo = new HashMap<>(); in retrieveTrustRootCerts()
925 trustCertInfo.put( in retrieveTrustRootCerts()
930 allTrustCerts.put(OsuServerConnection.TRUST_CERT_TYPE_POLICY, trustCertInfo); in retrieveTrustRootCerts()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
DPasspointProvisionerTest.java270 Map<String, byte[]> trustCertInfo = new HashMap<>(); in setUp() local
271 trustCertInfo.put("https://testurl.com", "testData".getBytes()); in setUp()
272 when(mPasspointConfiguration.getTrustRootCertList()).thenReturn(trustCertInfo); in setUp()