user1810868
user1810868

Reputation: 1615

How can I know the default ciphersuite a server provides using Java

If I am using Java to initiate SSL handshake with a server, Java has a set of enabled ciphersuites that will be offered during the handshake. This list will influence the server's choice. If I want to know what is the default choice for the serve, without being influenced by the client, can I do this? What shall I add in the client's list ?

Upvotes: 0

Views: 86

Answers (1)

user207421
user207421

Reputation: 311055

There is no such thing as 'the default choice for the server without being influenced by the client'. The question has no meaning. The client supplies a list of cipher suites, the server chooses one, period.

Upvotes: 1

Related Questions