List of usage examples for javax.net.ssl SSLSocketFactory subclass-usage
From source file com.wunding.mlplayer.hudong.DummySSLSocketFactory.java
/** * An SSL socket factory that will let any certifacte past, even if it's expired or * not singed by a root CA. */ public class DummySSLSocketFactory extends SSLSocketFactory {
From source file com.googlecode.gmail4j.http.HttpProxyAwareSslSocketFactory.java
/**
* HTTP Proxy aware {@link SSLSocketFactory} implementation.
* <p>
* Used for making JavaMail work through HTTP Proxy.
*
* FIXME incomplete!
From source file es.ugr.swad.swadroid.ssl.EasySSLSocketFactory.java
/** * SSLSocketFactory for self-signed certificates. * * @author Juan Miguel Boyero Corral <juanmi1982@gmail.com> */ public class EasySSLSocketFactory extends SSLSocketFactory implements SocketFactory, LayeredSocketFactory {
From source file com.vmware.bdd.security.tls.SimpleSeverTrustTlsSocketFactory.java
/** * this ssl socket factory is integrated with SimpleServerTrustFactory for graceful server certificate validation. */ public class SimpleSeverTrustTlsSocketFactory extends SSLSocketFactory { private final SSLSocketFactory defaultSSLSocketFactory;
From source file com.github.kpavlov.ssl.DynamicSSLSocketFactory.java
public class DynamicSSLSocketFactory extends SSLSocketFactory { private static final org.slf4j.Logger LOGGER = org.slf4j.LoggerFactory.getLogger(DynamicSSLSocketFactory.class); private final KeyStoreProvider keyStoreProvider; private final KeyPasswordProvider keyPasswordProvider;
From source file org.apache.jmeter.util.HttpSSLProtocolSocketFactory.java
/**
* Derived from EasySSLProtocolFactory
*
* Used by JsseSSLManager to set up the Commons HttpClient and Java https socket handling
*/
From source file edu.vt.middleware.ldap.LdapTLSSocketFactory.java
/**
* <code>TLSSocketFactory</code> is an extension of SSLSocketFactory. It was
* written to allow easy use of keystores and truststores. Note that {@link
* #initialize()} must be called prior to using this socket factory. This means
* that this class cannot be passed to implementations that expect the socket
* factory to function immediately after construction.
From source file org.jivesoftware.spark.util.DummySSLSocketFactory.java
/**
* An SSL socket factory that will let any certifacte past, even if it's expired or
* not singed by a root CA.
* <p/>
* This and all the files in the module have been developed by Bert De Geyter (https://github
* .com/TheHolyWaffle) and are protected by the Apache GPLv3 license.
From source file org.lizardirc.beancounter.security.VerifyingSslSocketFactory.java
public class VerifyingSslSocketFactory extends SSLSocketFactory { private static final HostnameVerifier verifier = new DefaultHostnameVerifier(); private final String hostname; private final SSLSocketFactory underlyingFactory; public VerifyingSslSocketFactory(String hostname) {
From source file android.net.SSLCertificateSocketFactory.java
/**
* SSLSocketFactory implementation with several extra features:
*
* <ul>
* <li>Timeout specification for SSL handshake operations
* <li>Hostname verification in most cases (see WARNINGs below)