Searched refs:SSLSocketFactory (Results 1 – 5 of 5) sorted by relevance
145 public class SSLSocketFactory implements LayeredSocketFactory { class162 private static final SSLSocketFactory DEFAULT_FACTORY = new SSLSocketFactory();168 public static SSLSocketFactory getSocketFactory() { in getSocketFactory()173 private final javax.net.ssl.SSLSocketFactory socketfactory;177 public SSLSocketFactory( in SSLSocketFactory() method in SSLSocketFactory204 public SSLSocketFactory( in SSLSocketFactory() method in SSLSocketFactory213 public SSLSocketFactory(final KeyStore keystore, final String keystorePassword) in SSLSocketFactory() method in SSLSocketFactory219 public SSLSocketFactory(final KeyStore truststore) in SSLSocketFactory() method in SSLSocketFactory229 public SSLSocketFactory(javax.net.ssl.SSLSocketFactory socketfactory) { in SSLSocketFactory() method in SSLSocketFactory241 private SSLSocketFactory() { in SSLSocketFactory() method in SSLSocketFactory
72 public static SSLSocketFactory getHttpSocketFactory(boolean insecure, KeyManager keyManager) { in getHttpSocketFactory()77 SSLSocketFactory wrapped = new SSLSocketFactory(underlying); in getHttpSocketFactory()79 wrapped.setHostnameVerifier(SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER); in getHttpSocketFactory()
99 registry.register(new Scheme(schemeName, new SSLSocketFactory(underlying), 443)); in registerClientCert()
14 import org.apache.http.conn.ssl.SSLSocketFactory;221 SSLSocketFactory sslf = SSLSocketFactory.getSocketFactory(); in createClientConnectionManager()222 sslf.setHostnameVerifier(SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER); in createClientConnectionManager()
41 import javax.net.ssl.SSLSocketFactory;199 SSLSocketFactory sf = serverContext.getSocketFactory(); in startWebServer()200 SSLSocketFactory needClientAuth = TestSSLContext.clientAuth(sf, false, true); in startWebServer()