Horcrux7
Horcrux7

Reputation: 24467

Why not all cipher suites are enabled by default in Java?

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

Answers (1)

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

Related Questions