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

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

Introduction

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

Usage

From source file com.cellobject.oikos.util.IISSLSocketFactory.java

public class IISSLSocketFactory extends SSLSocketFactory {
    SSLContext sslContext = SSLContext.getInstance("TLS");

    public IISSLSocketFactory(final KeyStore truststore)
            throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException, UnrecoverableKeyException {
        super(truststore);

From source file org.dasein.cloud.azure.AzureSSLSocketFactory.java

/**
 * Custom socket factory for handling X509 authentication with Azure using an in-memory key store.
 * @author George Reese (george.reese@imaginary.com)
 * @author Tim Freeman (tim.freeman@enstratus.com)
 * @since 2012.04.1
 * @version 2012.04.1

From source file org.cvasilak.jboss.mobile.app.net.ssl.EasySSLSocketFactory.java

public class EasySSLSocketFactory extends SSLSocketFactory {

    private final SSLContext sslContext = SSLContext.getInstance("TLS");

    public EasySSLSocketFactory(KeyStore truststore)
            throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException, UnrecoverableKeyException {

From source file com.volley.demo.misc.SslSocketFactory.java

class SslSocketFactory extends SSLSocketFactory {
    public SslSocketFactory(KeyStore keystore, String keystorePassword)
            throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException, UnrecoverableKeyException {
        super(keystore, keystorePassword);
        // TODO Auto-generated constructor stub
    }

From source file com.android.volley.toolbox.SslSocketFactory.java

class SslSocketFactory extends SSLSocketFactory {
    public SslSocketFactory(KeyStore keystore, String keystorePassword)
            throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException, UnrecoverableKeyException {
        super(keystore, keystorePassword);
        // TODO Auto-generated constructor stub
    }

From source file com.netflix.http4.ssl.KeyStoreAwareSocketFactory.java

/**
 *
 * SocketFactory that remembers what keystore and truststore being used,
 * allowing for that information to be queried later.
 *
 * @author jzarfoss

From source file org.dasein.cloud.util.X509SSLSocketFactory.java

/**
 * SSL socket factory for supporting dynamic X509 over SSL authentication.
 * <p>Created by George Reese: 11/19/12 8:49 AM</p>
 * @author George Reese
 * @version 2013.01 initial version borrowed from the work done in dasein-cloud-azure
 * @since 2013.01

From source file com.msopentech.thali.utilities.universal.HttpKeySSLSocketFactory.java

/**
 * Unfortunately Android uses an outdated version of the Apache HTTPClient interfaces and equally unfortunately
 * Ektorp depends on HTTP Client so we have to create our own SSLSocketFactory in order to get the hooks we need.
 * If we were using a modern version of Apache HTTP Client we could have just created the SSLSocketFactory
 * directly from the SSLContext.
 */

From source file com.layer8apps.SimpleSSLSocketFactory.java

public class SimpleSSLSocketFactory extends org.apache.http.conn.ssl.SSLSocketFactory {
    private SSLSocketFactory sslFactory = HttpsURLConnection.getDefaultSSLSocketFactory();

    public SimpleSSLSocketFactory(KeyStore truststore)
            throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException, UnrecoverableKeyException {
        super(null);

From source file com.lgallardo.qbittorrentclient.MySSLSocketFactory.java

public class MySSLSocketFactory extends SSLSocketFactory {
    SSLContext sslContext = SSLContext.getInstance("TLS");

    public MySSLSocketFactory(KeyStore truststore)
            throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException, UnrecoverableKeyException {
        super(truststore);