You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 22, 2023. It is now read-only.
This forbids NSA or other third parties to listen on connections even if the private keys are compromised. Special key exchange happens on negotiation.
I have tried to workaround lack of honorCipherOrder option by manually passing the constant to the Credentials constructor but it fails for some reason. Please advise.
Test is here:
https://gist.github.com/RushPL/9376770
Below test for primary domain is correct:
Below test for secondary (SNI resolved) domain is not correct as the cipher should be the same as in the above test:
Forcing server's cipher order is necessary to implement forwarding secrecy https://community.qualys.com/blogs/securitylabs/2013/06/25/ssl-labs-deploying-forward-secrecy
This forbids NSA or other third parties to listen on connections even if the private keys are compromised. Special key exchange happens on negotiation.
I have tried to workaround lack of
honorCipherOrderoption by manually passing the constant to theCredentialsconstructor but it fails for some reason. Please advise.