Home | History | Annotate | Download | only in config

Lines Matching refs:hostname

32  * <p>This trust manager delegates to the specific trust manager for the hostname being used for
36 * Note that if the {@code ApplicationConfig} has per-domain configurations the hostname aware
90 // Not an SSLSocket, use the hostname unaware checkServerTrusted.
112 "Domain specific configurations require that hostname aware"
120 * Hostname aware version of {@link #checkServerTrusted(X509Certificate[], String)}.
125 String hostname) throws CertificateException {
126 if (hostname == null && mConfig.hasPerDomainConfigs()) {
128 "Domain specific configurations require that the hostname be provided");
130 NetworkSecurityConfig config = mConfig.getConfigForHostname(hostname);
131 return config.getTrustManager().checkServerTrusted(certs, authType, hostname);