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

rfc7301Grease8F value not displayed correctly in SSLParameters javadoc

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 17
    • None
    • security-libs
    • None

      Currently, the SSLParameters javadoc has an example String for coding purposes:
      https://docs.oracle.com/en/java/javase/16/docs/api/java.base/javax/net/ssl/SSLParameters.html

      // 0x00-0xFF: 1 byte
           String rfc7301Grease8F = "\008F\008F";

      The Unicode encoding is being lost. I think either of these values in the src code should work:

      String rfc7301Grease8F = "\\u008F\\u008F";
      String rfc7301Grease8F = "\u005cu008F\u005cu008F";

            wetmore Bradford Wetmore
            coffeys Sean Coffey
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: