I would like to know how to add Cipher Suite: TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
support to the new versions of Chrome?
Since Chrome v25/26 Google stopped the support of Cipher Suite: TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
. Unfortunately, I am working on application that require such a cipher and for that I have built a kind of Extension/Addon for it on Chrome. Without the support of this cipher my addon/extension will be useless.
Does anybody how to fix such an issue?
I have used the following command chrome.exe --cipher-suite-blacklist=0xc007,0xc011,0x0066,0xc00c,0xc002,0x0005,0x0004
then I checked my browser SSL support using this website: https://www.ssllabs.com/ssltest/viewMyClient.html
but I still can't get my application to work. Is there anything I missed? is the cipher order matters?