Diana Vilkolakova created ELY-1952:
--------------------------------------
Summary: SSLConfigurator ignores some of the SSLParameters passed in via
setSSLParameters method
Key: ELY-1952
URL:
https://issues.redhat.com/browse/ELY-1952
Project: WildFly Elytron
Issue Type: Bug
Reporter: Diana Vilkolakova
Assignee: Diana Vilkolakova
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.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)