Uploaded image for project: 'Geode'
  1. Geode
  2. GEODE-8070

rework handling of "any" in SSLUtils

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 1.14.0
    • membership
    • None

    Description

      SSLUtil has a list of "known" TLS protocols.  It should support TLSv1.3.

       

      // lookup known algorithms
      String[] knownAlgorithms = {"SSL", "SSLv2", "SSLv3", "TLS", "TLSv1", "TLSv1.1", "TLSv1.2"};
      for (String algo : knownAlgorithms) {
        try {
          sslContext = SSLContext.getInstance(algo);
          break;
        } catch (NoSuchAlgorithmException e) {
          // continue
        }
      } 

      We probably can't fully test this change since not all JDKs we test with support v1.3 at this time.

      Attachments

        Issue Links

          Activity

            People

              bschuchardt Bruce J Schuchardt
              bschuchardt Bruce J Schuchardt
              Votes:
              0 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: