List of usage examples for org.apache.http.conn.ssl SSLSocketFactory subclass-usage
From source file cz.cvut.jirutjak.fastimport.droid.utils.AdditionalKeyStoresSSLSocketFactory.java
/**
* Allows you to trust certificates from additional KeyStores in addition to the
* default KeyStore
*
* @author Michael Burton <m1@niskala.org>
* @see http://stackoverflow.com/questions/2642777/trusting-all-certificates-using-httpclient-over-https/6378872#6378872
From source file org.cvasilak.jboss.mobile.admin.net.ssl.EasySSLSocketFactory.java
public class EasySSLSocketFactory extends SSLSocketFactory { SSLContext sslContext = SSLContext.getInstance("TLS"); public EasySSLSocketFactory(KeyStore truststore) throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException, UnrecoverableKeyException { super(truststore);
From source file org.bombusim.networking.AndroidSSLSocketFactory.java
public class AndroidSSLSocketFactory extends SSLSocketFactory { SSLContext sslContext = SSLContext.getInstance("TLS"); public AndroidSSLSocketFactory(KeyStore truststore) throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException, UnrecoverableKeyException { super(truststore);
From source file org.cloudifysource.restclient.RestSSLSocketFactory.java
/** * Creates a SSL socket for the REST communication. */ public class RestSSLSocketFactory extends SSLSocketFactory { private SSLContext sslContext = SSLContext.getInstance(TLS);
From source file com.mingsoft.weixin.http.WeixinSSLSocketFactory.java
/**
* Copyright: Copyright (c) 2014 - 2015
* Company:??
* @author wangtp
* @version 300-001-001
* ?
From source file li.klass.fhem.fhem.CustomSSLSocketFactory.java
/**
* Custom implementation for SSL.
* See
* http://stackoverflow.com/questions/2642777/trusting-all-certificates-using-httpclient-over-https
* for details
*/
From source file org.jasig.portal.security.provider.saml.PublicKeyVerifyingSSLSocketFactory.java
/**
* This class extends the Apache Commons HTTP Client SSLSocketFactory to support
* the verification of the server's public key against supplied public key. If
* an attempt is made to connec to to a server that does not present a matching
* public key, the connection will be terminated.
*
From source file info.semanticsoftware.semassist.android.encryption.CustomSSLSocketFactory.java
public class CustomSSLSocketFactory extends SSLSocketFactory { SSLContext sslContext = SSLContext.getInstance("TLS"); public CustomSSLSocketFactory(KeyStore truststore) throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException, UnrecoverableKeyException { super(truststore);
From source file com.socialize.net.NaiveSSLSocketFactory.java
/** * @author Jason Polites * */ public class NaiveSSLSocketFactory extends SSLSocketFactory {
From source file org.thoughtcrime.ssl.pinning.PinningSSLSocketFactory.java
/**
* A standard Apache SSL Socket Factory that uses an pinning trust manager.
* <p>
* To use:
* <pre>
*