Home
last modified time | relevance | path

Searched refs:SSLSocketFactory (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DSSLSocketFactory.java145 public class SSLSocketFactory implements LayeredSocketFactory { class
162 private static final SSLSocketFactory DEFAULT_FACTORY = new SSLSocketFactory();
168 public static SSLSocketFactory getSocketFactory() { in getSocketFactory()
173 private final javax.net.ssl.SSLSocketFactory socketfactory;
177 public SSLSocketFactory( in SSLSocketFactory() method in SSLSocketFactory
204 public SSLSocketFactory( in SSLSocketFactory() method in SSLSocketFactory
213 public SSLSocketFactory(final KeyStore keystore, final String keystorePassword) in SSLSocketFactory() method in SSLSocketFactory
219 public SSLSocketFactory(final KeyStore truststore) in SSLSocketFactory() method in SSLSocketFactory
229 public SSLSocketFactory(javax.net.ssl.SSLSocketFactory socketfactory) { in SSLSocketFactory() method in SSLSocketFactory
241 private SSLSocketFactory() { in SSLSocketFactory() method in SSLSocketFactory
DSSLSocketFactoryWrapper.java35 import javax.net.ssl.SSLSocketFactory;
37 public class SSLSocketFactoryWrapper extends javax.net.ssl.SSLSocketFactory {
38 private final SSLSocketFactory mFactory;
67 SSLSocketFactoryWrapper(final SSLSocketFactory factory, final boolean secure, in SSLSocketFactoryWrapper()
95 public static SSLSocketFactory getDefault(final KeyManager[] keyManagers, int handshakeTimeout) in getDefault()
102 public static SSLSocketFactory getInsecure(final KeyManager[] keyManagers, in getInsecure()
DSSLUtils.java53 private static javax.net.ssl.SSLSocketFactory sSecureFactory;
158 public synchronized static javax.net.ssl.SSLSocketFactory getSSLSocketFactory( in getSSLSocketFactory()
198 public static SSLSocketFactory getHttpSocketFactory(Context context, HostAuth hostAuth, in getHttpSocketFactory()
200 javax.net.ssl.SSLSocketFactory underlying = getSSLSocketFactory(context, hostAuth, in getHttpSocketFactory()
202 SSLSocketFactory wrapped = new SSLSocketFactory(underlying); in getHttpSocketFactory()
204 wrapped.setHostnameVerifier(SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER); in getHttpSocketFactory()
DEmailClientConnectionManager.java109 SSLSocketFactory ssf = in registerClientCert()
/packages/apps/KeyChain/tests/src/com/android/keychain/tests/
DKeyChainTestActivity.java41 import javax.net.ssl.SSLSocketFactory;
199 SSLSocketFactory sf = serverContext.getSocketFactory(); in startWebServer()
200 SSLSocketFactory needClientAuth = TestSSLContext.clientAuth(sf, false, true); in startWebServer()