We set enabled cipher suites twice, at these places:
|
tlsConfig.getCipherSuites().ifPresent(sslEngine::setEnabledCipherSuites); |
|
builder.ciphers(Arrays.asList(tlsConfig.getCipherSuites().get())); |
The first use javax and the second use the netty API, it would be nice if we could remove the first and keep the one using Netty API.
We set enabled cipher suites twice, at these places:
ecchronos/application/src/main/java/com/ericsson/bss/cassandra/ecchronos/application/ReloadingCertificateHandler.java
Line 110 in 893bfd0
ecchronos/application/src/main/java/com/ericsson/bss/cassandra/ecchronos/application/ReloadingCertificateHandler.java
Line 306 in 893bfd0
The first use javax and the second use the netty API, it would be nice if we could remove the first and keep the one using Netty API.