Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/
DPasspointProvisioner.java915 Map<String, byte[]> trustCertInfo = passpointConfig.getTrustRootCertList(); in retrieveTrustRootCerts() local
916 if (trustCertInfo == null || trustCertInfo.isEmpty()) { in retrieveTrustRootCerts()
923 allTrustCerts.put(OsuServerConnection.TRUST_CERT_TYPE_AAA, trustCertInfo); in retrieveTrustRootCerts()
928 trustCertInfo = new HashMap<>(); in retrieveTrustRootCerts()
929 trustCertInfo.put( in retrieveTrustRootCerts()
933 allTrustCerts.put(OsuServerConnection.TRUST_CERT_TYPE_REMEDIATION, trustCertInfo); in retrieveTrustRootCerts()
946 trustCertInfo = new HashMap<>(); in retrieveTrustRootCerts()
947 trustCertInfo.put( in retrieveTrustRootCerts()
952 allTrustCerts.put(OsuServerConnection.TRUST_CERT_TYPE_POLICY, trustCertInfo); in retrieveTrustRootCerts()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/
DPasspointProvisionerTest.java267 Map<String, byte[]> trustCertInfo = new HashMap<>(); in setUp() local
268 trustCertInfo.put("https://testurl.com", "testData".getBytes()); in setUp()
269 when(mPasspointConfiguration.getTrustRootCertList()).thenReturn(trustCertInfo); in setUp()