XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • Major
    • 7.2.0.CD14
    • None
    • Security
    • None

    Description

      Check Trace logging of ssl context creation. How I read code logging should apply after throw expression. That wouldn never happen. Also there is another throw of exception with SSLUtils::throwIt.

      org.wildfly.security.ssl.SSLUtils
              // now return a factory that will return the best match is can create.
              final String[] supportedProtocols = protocolSelector.evaluate(preferredProviderByAlgorithm.keySet().toArray(NO_STRINGS));
              if (supportedProtocols.length > 0) {
                  return () -> {
                      for (String protocol : supportedProtocols) {
                          List<Provider> providerList = preferredProviderByAlgorithm.getOrDefault(protocol, Collections.emptyList());
                              for (Provider provider : providerList) {
                                  try {
                                      return SSLContext.getInstance(protocol, provider);
                                  } catch (NoSuchAlgorithmException ignored) {}
                              }
                      }
                      throw ElytronMessages.log.noAlgorithmForSslProtocol();
                  };
              }
      
              if (log.isTraceEnabled()) {
                  log.tracef("No %s provided by providers in %s: %s", SERVICE_TYPE, SSLUtils.class.getSimpleName(), Arrays.toString(providerSupplier.get()));
              }
      
              return SSLUtils::throwIt;
      

      Attachments

        Issue Links

          Activity

            People

              jucook Justin Cook (Inactive)
              mchoma@redhat.com Martin Choma
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: