user1810868
user1810868

Reputation: 1605

Is it possible to edit the supported ciphersuite list in Java

Is it possible to add ciphersuites to the Java supported ciphersuites list that I could get using: getSupportedCipherSuites();

Upvotes: 0

Views: 151

Answers (1)

user207421
user207421

Reputation: 310840

No it is not possible. The cipher suites that aren't listed by getSupportedCipherSuites() aren't, err, supported. To add support for them you would have to implement them, which takes a lot more than just adding a string to a list.

Why do you think you need this? Ordinarily you shouldn't even be using the supported cipher suites that aren't enabled, let alone adding to them.

Upvotes: 1

Related Questions