Hello Netty group,
I was wondering if it is possible to set a minimal DH-param size in SslContext or anywhere else.
The default key exchange with a size of 1024 bits is considered is considered weak according to SSLlabs which I would like to strengthen.
The key size could be customized on the normal SslProvider.JDK by changing the jdk.tls.ephemeralDHKeySize JVM property to the desired key size.
I've searched around for a solution and saw that tomcat-native seems to use SSLContext.setTmpDH(long serverContext, String filePath) to provide custom DH-params.
Would there be a way to solve this issue?