Reputation: 24467
What is the disadvantage of:
sslSocket.setEnabledCipherSuites( sslSocket.getSupportedCipherSuites() );
Why is this not the default setting? Are there some security risk with some of it?
Upvotes: 2
Views: 708
Reputation: 46080
Not all cipher suites are equal. The list of supported cipher suites can include NULL ciphersuites (no encryption or no authentication or both) or other weak cipher suites and you probably don't want this to be enabled?
Upvotes: 4