Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2019-05-02 02:12:02 +0000
committerslewis2019-05-02 02:12:02 +0000
commitcea01f8d7208697190accf1304fb71c1abd198af (patch)
treedf64093f2f7bdc9e02deab10a2763d775f119d8f /providers/bundles
parentc38db758af73cc4e29eec95d5767c19a364ce8de (diff)
downloadorg.eclipse.ecf-cea01f8d7208697190accf1304fb71c1abd198af.tar.gz
org.eclipse.ecf-cea01f8d7208697190accf1304fb71c1abd198af.tar.xz
org.eclipse.ecf-cea01f8d7208697190accf1304fb71c1abd198af.zip
Fix for https://bugs.eclipse.org/bugs/show_bug.cgi?id=546896
Diffstat (limited to 'providers/bundles')
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.filetransfer.httpclient4/src/org/eclipse/ecf/provider/filetransfer/httpclient4/HttpClientDefaultSSLSocketFactoryModifier.java33
1 files changed, 24 insertions, 9 deletions
diff --git a/providers/bundles/org.eclipse.ecf.provider.filetransfer.httpclient4/src/org/eclipse/ecf/provider/filetransfer/httpclient4/HttpClientDefaultSSLSocketFactoryModifier.java b/providers/bundles/org.eclipse.ecf.provider.filetransfer.httpclient4/src/org/eclipse/ecf/provider/filetransfer/httpclient4/HttpClientDefaultSSLSocketFactoryModifier.java
index f7f722a2c..c6f185d14 100644
--- a/providers/bundles/org.eclipse.ecf.provider.filetransfer.httpclient4/src/org/eclipse/ecf/provider/filetransfer/httpclient4/HttpClientDefaultSSLSocketFactoryModifier.java
+++ b/providers/bundles/org.eclipse.ecf.provider.filetransfer.httpclient4/src/org/eclipse/ecf/provider/filetransfer/httpclient4/HttpClientDefaultSSLSocketFactoryModifier.java
@@ -14,10 +14,12 @@ package org.eclipse.ecf.provider.filetransfer.httpclient4;
import java.io.IOException;
import java.net.Socket;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLSocketFactory;
import javax.net.ssl.TrustManager;
-import org.eclipse.ecf.core.util.StringUtils;
import org.eclipse.ecf.filetransfer.events.socketfactory.INonconnectedSocketFactory;
import org.eclipse.ecf.internal.provider.filetransfer.httpclient4.ISSLSocketFactoryModifier;
@@ -46,21 +48,32 @@ public class HttpClientDefaultSSLSocketFactoryModifier implements ISSLSocketFact
}
public synchronized SSLContext getSSLContext(String protocols) {
- SSLContext rtvContext = null;
-
+ SSLContext resultContext = null;
if (protocols != null) {
- String protocolNames[] = StringUtils.split(protocols, ","); //$NON-NLS-1$
- for (int i = 0; i < protocolNames.length; i++) {
+
+ String[] httpsProtocols = protocols.split(",");
+ // trim to make sure
+ for (int i = 0; i < httpsProtocols.length; i++)
+ httpsProtocols[i] = httpsProtocols[i].trim();
+ // Now put into defaultProtocolsList in order of jreProtocols
+ List<String> splitProtocolsList = Arrays.asList(httpsProtocols);
+ List<String> defaultProtocolsList = new ArrayList();
+ for (int i = 0; i < jreProtocols.length; i++)
+ if (splitProtocolsList.contains(jreProtocols[i]))
+ defaultProtocolsList.add(jreProtocols[i]);
+ // In order of jre protocols, attempt to create and init SSLContext
+ for (String protocol : defaultProtocolsList) {
try {
- rtvContext = SSLContext.getInstance(protocolNames[i]);
- rtvContext.init(null, new TrustManager[] {new HttpClientSslTrustManager()}, null);
+ resultContext = SSLContext.getInstance(protocol);
+ resultContext.init(null, new TrustManager[] {new HttpClientSslTrustManager()}, null);
break;
} catch (Exception e) {
- // just continue
+ // just continue to look for SSLContexts with the next
+ // protocolName
}
}
}
- return rtvContext;
+ return resultContext;
}
public Socket createSocket() throws IOException {
@@ -75,4 +88,6 @@ public class HttpClientDefaultSSLSocketFactoryModifier implements ISSLSocketFact
return this;
}
+ private static final String[] jreProtocols = new String[] {"TLSv1.2", "TLSv1.1", "TLSv1", "SSLv3"};
+
}

Back to the top