I have a basic client/server application written in Java which uses plain Sockets for communication.
I\'d like to prevent passive eavesdropping attacks against it and d
You should set the cipher suite on the SSLSocket (or SSLEngine) using setEnabledCipherSuites.
SSLSocket
SSLEngine