Skip to content

Commit

Permalink
Fix for #26
Browse files Browse the repository at this point in the history
  • Loading branch information
scottslewis committed Mar 24, 2023
1 parent 696f197 commit dbcee46
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion framework/bundles/org.eclipse.ecf.ssl/META-INF/MANIFEST.MF
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %plugin.name
Bundle-SymbolicName: org.eclipse.ecf.ssl
Automatic-Module-Name: org.eclipse.ecf.ssl
Bundle-Version: 1.2.401.qualifier
Bundle-Version: 1.2.500.qualifier
Fragment-Host: org.eclipse.ecf
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Import-Package: javax.net,
Expand Down
2 changes: 1 addition & 1 deletion framework/bundles/org.eclipse.ecf.ssl/pom.xml
Expand Up @@ -10,6 +10,6 @@
</parent>
<groupId>org.eclipse.ecf</groupId>
<artifactId>org.eclipse.ecf.ssl</artifactId>
<version>1.2.401-SNAPSHOT</version>
<version>1.2.500-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Expand Up @@ -16,7 +16,8 @@

public class SSLContextHelper {

private static final String[] jreProtocols = new String[] { "TLSv1.2", "TLSv1.1", "TLSv1", "SSLv3" };
private static final String[] jreProtocols = new String[] { "TLSv1.3", "TLSv1.2", "TLSv1.2", "TLSv1.1", "TLSv1",
"TLSv1.3", "SSLv3" };

public static SSLContext getSSLContext(String protocols) {
SSLContext resultContext = null;
Expand Down
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %plugin.name
Bundle-SymbolicName: org.eclipse.ecf.provider.filetransfer.httpclient5;singleton:=true
Bundle-Version: 1.0.401.qualifier
Bundle-Version: 1.0.500.qualifier
Bundle-Vendor: %plugin.provider
Bundle-Localization: plugin
Automatic-Module-Name: org.eclipse.ecf.provider.filetransfer.httpclient5
Expand Down
Expand Up @@ -9,7 +9,7 @@
<relativePath>../../../</relativePath>
</parent>
<artifactId>org.eclipse.ecf.provider.filetransfer.httpclient5</artifactId>
<version>1.0.401-SNAPSHOT</version>
<version>1.0.500-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>

<build>
Expand Down
Expand Up @@ -30,7 +30,7 @@ public class HttpClientDefaultSSLSocketFactoryModifier {

private String defaultProtocolNames = System.getProperty(DEFAULT_SSL_PROTOCOL);

private static final String[] jreProtocols = new String[] {"TLSv1.2", "TLSv1.1", "TLSv1", "SSLv3"}; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
private static final String[] jreProtocols = new String[] {"TLSv1.3", "TLSv1.2", "TLSv1.1", "TLSv1", "SSLv3"}; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$

public HttpClientDefaultSSLSocketFactoryModifier() {
// empty
Expand Down
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %plugin.name
Bundle-SymbolicName: org.eclipse.ecf.provider.filetransfer.httpclientjava;singleton:=true
Bundle-Version: 1.0.300.qualifier
Bundle-Version: 1.0.400.qualifier
Bundle-Vendor: %plugin.provider
Bundle-Localization: plugin
Automatic-Module-Name: org.eclipse.ecf.provider.filetransfer.httpclientjava
Expand Down
Expand Up @@ -9,7 +9,7 @@
<relativePath>../../../</relativePath>
</parent>
<artifactId>org.eclipse.ecf.provider.filetransfer.httpclientjava</artifactId>
<version>1.0.300-SNAPSHOT</version>
<version>1.0.400-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>

<build>
Expand Down
Expand Up @@ -30,7 +30,7 @@ public class HttpClientDefaultSSLSocketFactoryModifier {

private String defaultProtocolNames = System.getProperty(DEFAULT_SSL_PROTOCOL);

private static final String[] jreProtocols = new String[] {"TLSv1.2", "TLSv1.1", "TLSv1", "SSLv3"}; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
private static final String[] jreProtocols = new String[] {"TLSv1.3", "TLSv1.2", "TLSv1.1", "TLSv1", "SSLv3"}; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$

public HttpClientDefaultSSLSocketFactoryModifier() {
// empty
Expand Down

0 comments on commit dbcee46

Please sign in to comment.