diff --git a/bundles/org.opensmarthouse.core.io.net/src/main/java/org/eclipse/smarthome/io/net/http/internal/WebClientFactoryImpl.java b/bundles/org.opensmarthouse.core.io.net/src/main/java/org/eclipse/smarthome/io/net/http/internal/WebClientFactoryImpl.java index 2325270ce5e..aa6f2f8e66b 100644 --- a/bundles/org.opensmarthouse.core.io.net/src/main/java/org/eclipse/smarthome/io/net/http/internal/WebClientFactoryImpl.java +++ b/bundles/org.opensmarthouse.core.io.net/src/main/java/org/eclipse/smarthome/io/net/http/internal/WebClientFactoryImpl.java @@ -388,10 +388,6 @@ private SslContextFactory createSslContextFactoryFromExtensibleTrustManager() { } catch (NoSuchAlgorithmException | KeyManagementException ex) { throw new HttpClientInitializationException("Cannot create an TLS context!", ex); } - // Exclude weak / insecure ciphers - sslContextFactory.addExcludeCipherSuites("^.*_(MD5|SHA|SHA1)$"); - // Exclude ciphers that don't support forward secrecy - sslContextFactory.addExcludeCipherSuites("^TLS_RSA_.*$"); return sslContextFactory; } @@ -416,8 +412,6 @@ private SslContextFactory createSslContextFactoryFromTrustManagerProvider(@Nulla } } - String excludeCipherSuites[] = { "^.*_(MD5)$" }; - sslContextFactory.setExcludeCipherSuites(excludeCipherSuites); return sslContextFactory; }