From 5bb09b38580f79cc90b51a4ef3da9468c30eccf2 Mon Sep 17 00:00:00 2001 From: Mark Reynolds Date: Mon, 8 Dec 2014 13:16:00 -0500 Subject: [PATCH] Ticket 47929 - idm-console-framework - set default min to tls1.0 Description: Need to set the default minimum ot TLS1.0, not TLS1.1. This could break the console when communicating to an older version of DS that does not support TLS1.1 yet. https://fedorahosted.org/389/ticket/47929 Reviewed by: mreynolds --- src/com/netscape/management/client/comm/HttpsChannel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/netscape/management/client/comm/HttpsChannel.java b/src/com/netscape/management/client/comm/HttpsChannel.java index 3a92fa6..7a54360 100644 --- a/src/com/netscape/management/client/comm/HttpsChannel.java +++ b/src/com/netscape/management/client/comm/HttpsChannel.java @@ -424,7 +424,7 @@ public class HttpsChannel extends HttpChannel implements nthPrompt = 0; // Set our defaults - int min = org.mozilla.jss.ssl.SSLSocket.SSLVersionRange.tls1_1; + int min = org.mozilla.jss.ssl.SSLSocket.SSLVersionRange.tls1_0; int max = org.mozilla.jss.ssl.SSLSocket.SSLVersionRange.tls1_2; Debug.println("CREATE JSS SSLSocket"); -- 1.9.3