Home
last modified time | relevance | path

Searched refs:getSSLContext (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/
H A DXmlConfigTests.java61 SSLContext context = TestUtils.getSSLContext(source); in testEmptyConfigFile()
80 SSLContext context = TestUtils.getSSLContext(source); in testEmptyAnchors()
107 SSLContext context = TestUtils.getSSLContext(source); in testBasicDomainConfig()
133 SSLContext context = TestUtils.getSSLContext(source); in testBasicPinning()
149 SSLContext context = TestUtils.getSSLContext(source); in testExpiredPin()
164 SSLContext context = TestUtils.getSSLContext(source); in testOverridesPins()
179 SSLContext context = TestUtils.getSSLContext(source); in testBadPin()
200 SSLContext context = TestUtils.getSSLContext(source); in testMultipleDomains()
217 SSLContext context = TestUtils.getSSLContext(source); in testMultipleDomainConfigs()
229 SSLContext context = TestUtils.getSSLContext(source); in testIncludeSubdomains()
[all …]
H A DNetworkSecurityConfigTests.java129 SSLContext context = TestUtils.getSSLContext(testSource); in testEmptyConfig()
139 … SSLContext context = TestUtils.getSSLContext(new TestConfigSource(domainMap, defaultConfig)); in testEmptyPerNetworkSecurityConfig()
157 = TestUtils.getSSLContext(new TestConfigSource(domainMap, getSystemStoreConfig())); in testBadPin()
175 = TestUtils.getSSLContext(new TestConfigSource(domainMap, getEmptyConfig())); in testGoodPin()
194 = TestUtils.getSSLContext(new TestConfigSource(domainMap, getEmptyConfig())); in testOverridePins()
206 = TestUtils.getSSLContext(new TestConfigSource(domainMap, getEmptyConfig())); in testMostSpecificNetworkSecurityConfig()
218 = TestUtils.getSSLContext(new TestConfigSource(domainMap, getEmptyConfig())); in testSubdomainIncluded()
224 context = TestUtils.getSSLContext(new TestConfigSource(domainMap, getEmptyConfig())); in testSubdomainIncluded()
261 = TestUtils.getSSLContext(new TestConfigSource(domainMap, getEmptyConfig())); in testWithUrlConnection()
H A DTestUtils.java73 public static SSLContext getSSLContext(ConfigSource source) throws Exception { in getSSLContext() method in TestUtils