문제

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

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top