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 pl.bcichecki.rms.client.android.services.clients.restful.https.ssl.SimpleSSLSocketFactory.java

/**
 * @author Bartosz Cichecki
 * 
 */
public class SimpleSSLSocketFactory extends SSLSocketFactory {

From source file dtu.ds.warnme.app.ws.client.https.ssl.SimpleSSLSocketFactory.java

/**
 * @author Bartosz Cichecki
 * 
 */
public class SimpleSSLSocketFactory extends SSLSocketFactory {

From source file org.openhab.habdroid.util.MySSLSocketFactory.java

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

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

From source file com.github.volley_examples.toolbox.SslSocketFactory.java

class SslSocketFactory extends SSLSocketFactory {
    public SslSocketFactory(InputStream keyStore, String keyStorePassword) throws GeneralSecurityException {
        super(createKeyStore(keyStore, keyStorePassword));
    }

    private static KeyStore createKeyStore(InputStream keyStore, String password)

From source file com.android.providers.downloads.ui.network.SslSocketFactory.java

class SslSocketFactory extends SSLSocketFactory {
    public SslSocketFactory(InputStream keyStore, String keyStorePassword) throws GeneralSecurityException {
        super(createKeyStore(keyStore, keyStorePassword));
    }

    private static KeyStore createKeyStore(InputStream keyStore, String password)

From source file me.willowcheng.makerthings.util.MySSLSocketFactory.java

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

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

From source file com.bright.json.MySSLSocketFactory.java

/**
 * Creates an insecure SSL socket that trusts any certificate.
 * 
 */

public class MySSLSocketFactory extends SSLSocketFactory {

From source file com.dalaran.async.util.MySSLSocketFactory.java

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

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

From source file ru.elifantiev.yandex.YandexSSLSocketFactory.java

class YandexSSLSocketFactory extends SSLSocketFactory {

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

    YandexSSLSocketFactory(KeyStore truststore)
            throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException, UnrecoverableKeyException {

From source file org.nuclos.common.tls.CustomSecureProtocolSocketFactory.java

/**
 * An custom SSL/TLS socket factory (for apache httpcomponents) that accepts self-signed certificates
 * and does not check the associated hostname.
 * 
 * @author Thomas Pasch
 */