Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8170035

When determining the ciphersuite lists there is no debug output for disabled suites.

    XMLWordPrintable

Details

    • b147
    • Not verified

    Backports

      Description


        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")) {

        Attachments

          Issue Links

            Activity

              People

                jnimeh Jamil Nimeh
                wetmore Bradford Wetmore
                Votes:
                0 Vote for this issue
                Watchers:
                5 Start watching this issue

                Dates

                  Created:
                  Updated:
                  Resolved: