Uploaded image for project: 'WildFly Elytron'
  1. WildFly Elytron
  2. ELY-1952

SSLConfigurator ignores some of the SSLParameters passed in via setSSLParameters method

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Done
    • Icon: Major Major
    • 1.10.7.Final, 1.12.0.CR2
    • None
    • None
    • None

      Method redefine in SSLConfiguratorImpl ignores some of the SSLParameters passed in, eg. cipher suites, protocols, needClientAuth, and others. Because of this, the assert in the code snippet below fails:

      ```
      SSLParameters sslParameters = clientSslSocket.getSSLParameters();
      sslParameters.setNeedClientAuth(true);
      clientSslSocket.setSSLParameters(sslParameters);
      Assert.assertTrue(clientSslSocket.getSSLParameters().getNeedClientAuth());
      ```

      This issue is to address that.

            dvilkola@redhat.com Diana Krepinska
            dvilkola@redhat.com Diana Krepinska
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: