mirror of
https://github.com/openjdk/jdk.git
synced 2026-03-03 20:50:19 +00:00
8170035: When determining the ciphersuite lists, there is no debug output for disabled suites
Provide extra debugging output for JSSE that displays disabled cipher suites Reviewed-by: vinnie, wetmore
This commit is contained in:
parent
3b349e495b
commit
a4e5122d64
@ -403,6 +403,13 @@ public abstract class SSLContextImpl extends SSLContextSpi {
|
||||
EnumSet.of(CryptoPrimitive.KEY_AGREEMENT),
|
||||
suite.name, null)) {
|
||||
suites.add(suite);
|
||||
} else {
|
||||
if (debug != null && 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")) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user