Can I alter the list of enabled cipher suites?

chudak meadandale at gmail.com
Wed Aug 10 11:13:09 EDT 2011


I'm not sure exactly what you are doing, however...

If you are using an SslHandler in your Netty pipeline then you need to
change this on the SslEngine before you construct the handler

http://download.oracle.com/javase/1,5.0/docs/api/javax/net/ssl/SSLEngine.html#setEnabledCipherSuites(java.lang.String[])

If you are using a standard connection, then you set this on the underlying
socket before it is connected:

http://download.oracle.com/javase/6/docs/api/javax/net/ssl/SSLSocket.html#setEnabledCipherSuites(java.lang.String[])

--
View this message in context: http://netty-forums-and-mailing-lists.685743.n2.nabble.com/Can-I-alter-the-list-of-enabled-cipher-suites-tp6649986p6672771.html
Sent from the Netty User Group mailing list archive at Nabble.com.


More information about the netty-users mailing list