Example usage for org.apache.http.conn.ssl SSLConnectionSocketFactory subclass-usage

List of usage examples for org.apache.http.conn.ssl SSLConnectionSocketFactory subclass-usage

Introduction

In this page you can find the example usage for org.apache.http.conn.ssl SSLConnectionSocketFactory subclass-usage.

Usage

From source file com.joyent.manta.http.MantaSSLConnectionSocketFactory.java

/**
 * Custom {@link SSLConnectionSocketFactory} implementation that consumes Manta
 * configuration and enforces the selection of protocols and ciphers.
 *
 * @author <a href="https://github.com/dekobon">Elijah Zupancic</a>
 * @since 3.0.0

From source file com.granita.icloudcalsync.webdav.TlsSniSocketFactory.java

public class TlsSniSocketFactory extends SSLConnectionSocketFactory {
    private static final String TAG = "davdroid.TlsSniSocketFactory";

    public static TlsSniSocketFactory getSocketFactory() {
        return new TlsSniSocketFactory((SSLSocketFactory) SSLSocketFactory.getDefault(),
                new BrowserCompatHostnameVerifierHC4() // use BrowserCompatHostnameVerifier to allow IP addresses in the Common Name

From source file com.vmware.loginsightapi.util.NonValidatingSSLSocketFactory.java

/**
 * A custom SSLSocketFactory which ignores the hostname verification and builds
 * a dummy SSL context.
 * 
 */
public class NonValidatingSSLSocketFactory extends SSLConnectionSocketFactory {

From source file com.liferay.sync.engine.lan.session.SNISSLConnectionSocketFactory.java

/**
 * @author Dennis Ju
 */
public class SNISSLConnectionSocketFactory extends SSLConnectionSocketFactory {

    public SNISSLConnectionSocketFactory(SSLContext sslContext, HostnameVerifier hostnameVerifier) {

From source file at.bitfire.davdroid.webdav.TlsSniSocketFactory.java

public class TlsSniSocketFactory extends SSLConnectionSocketFactory {
    private static final String TAG = "davdroid.TLS_SNI";

    // Android context used to show the self-signed certificate dialog.
    static Context androidContext;

From source file org.apache.nifi.toolkit.tls.service.client.TlsCertificateAuthorityClientSocketFactory.java

/**
 * Socket Factory validates that it is talking to a RootCa claiming to have the given hostname.  It adds the certificate
 * to a list for later validation against the payload's hmac
 */
public class TlsCertificateAuthorityClientSocketFactory extends SSLConnectionSocketFactory {
    private final String caHostname;

From source file microsoft.exchange.webservices.data.core.EwsSSLProtocolSocketFactory.java

/**
 * <p>
 * EwsSSLProtocolSocketFactory can be used to create SSL {@link java.net.Socket}s
 * that accept self-signed certificates.
 * </p>
 * <p>

From source file ch.bfh.abcvote.util.helpers.SocksConnectionSocketFactory.java

/**
 *
 * ConnectionSocketFactory needed for Socks Proxy
 *  based on answer http://stackoverflow.com/a/22960881 
 *  from http://stackoverflow.com/questions/22937983/how-to-use-socks-5-proxy-with-apache-http-client-4 
 * 

From source file com.ksc.http.conn.ssl.SdkTLSSocketFactory.java

/**
 * Used to enforce the preferred TLS protocol during SSL handshake.
 */
@ThreadSafe
public class SdkTLSSocketFactory extends SSLConnectionSocketFactory {

From source file microsoft.exchange.webservices.data.EwsSSLProtocolSocketFactory.java

/**
 * <p>
 * EwsSSLProtocolSocketFactory can be used to creats SSL {@link java.net.Socket}s
 * that accept self-signed certificates.
 * </p>
 * <p>