Reputation: 1615
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
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