]
Darran Lofthouse updated ELY-1952:
----------------------------------
Fix Version/s: 1.10.7.CR1
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
Priority: Major
Fix For: 1.10.7.CR1, 1.12.0.CR2
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.