-
Bug
-
Resolution: Fixed
-
P3
-
6u131, 7u121, 8u111
-
b147
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8212509 | 8u202 | Jamil Nimeh | P3 | Resolved | Fixed | b01 |
JDK-8207685 | 8u192 | Jamil Nimeh | P3 | Resolved | Fixed | b02 |
JDK-8170137 | 8u191 | Prasadarao Koppula | P3 | Resolved | Fixed | b01 |
JDK-8200713 | 8u181 | Jamil Nimeh | P3 | Resolved | Fixed | b01 |
JDK-8211524 | emb-8u191 | Jamil Nimeh | P3 | Resolved | Fixed | master |
JDK-8203139 | emb-8u181 | Jamil Nimeh | P3 | Resolved | Fixed | master |
JDK-8170136 | 7u201 | Prasadarao Koppula | P3 | Resolved | Fixed | b01 |
JDK-8201142 | 7u191 | Jamil Nimeh | P3 | Resolved | Fixed | b01 |
JDK-8208732 | openjdk7u | Jamil Nimeh | P3 | Resolved | Fixed | master |
JDK-8170135 | 6u191 | Prasadarao Koppula | P3 | Closed | Won't Fix |
diff --git a/src/java.base/share/classes/sun/security/ssl/SSLContextImpl.java b/src/java.base/share/classes/sun/security/ssl/SSLContextImpl.java
--- a/src/java.base/share/classes/sun/security/ssl/SSLContextImpl.java
+++ b/src/java.base/share/classes/sun/security/ssl/SSLContextImpl.java
@@ -403,6 +403,12 @@
EnumSet.of(CryptoPrimitive.KEY_AGREEMENT),
suite.name, null)) {
suites.add(suite);
+ } else {
+ if (Debug.isOn("sslctx") && Debug.isOn("verbose")) {
+ System.out.println(
+ "Ignoring Disabled cipher suite: "
+ + suite.name);
+ }
}
} else if (debug != null &&
Debug.isOn("sslctx") && Debug.isOn("verbose")) {
- backported by
-
JDK-8170136 When determining the ciphersuite lists there is no debug output for disabled suites.
- Resolved
-
JDK-8170137 When determining the ciphersuite lists there is no debug output for disabled suites.
- Resolved
-
JDK-8200713 When determining the ciphersuite lists there is no debug output for disabled suites.
- Resolved
-
JDK-8201142 When determining the ciphersuite lists there is no debug output for disabled suites.
- Resolved
-
JDK-8203139 When determining the ciphersuite lists there is no debug output for disabled suites.
- Resolved
-
JDK-8207685 When determining the ciphersuite lists there is no debug output for disabled suites.
- Resolved
-
JDK-8208732 When determining the ciphersuite lists there is no debug output for disabled suites.
- Resolved
-
JDK-8211524 When determining the ciphersuite lists there is no debug output for disabled suites.
- Resolved
-
JDK-8212509 When determining the ciphersuite lists there is no debug output for disabled suites.
- Resolved
-
JDK-8170135 When determining the ciphersuite lists there is no debug output for disabled suites.
- Closed