Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get list of SSL/TLS ciphers supported by internet explorer

We are going to develop an SSL server which support all the ciphers supported by IE 10 and IE 11. So I started searching in google about the list of ciphers supported by IE, but I am not able to get a single user document which clearly mentions all SSL ciphers supported by IE.

Is there any user document available in internet or is there any way to directly check the IE browser settings to get the list of supported ciphers ?

like image 964
rashok Avatar asked Dec 04 '25 13:12

rashok


2 Answers

The cipher suites depend less on the version of Internet Explorer and more on the underlying OS, because IE uses the SChannel implementation from Windows. And with some help of google it is easy to get the following information:

  • cipher suites in Schannel: http://msdn.microsoft.com/en-us/library/windows/desktop/aa374757(v=vs.85).aspx
  • cipher suites in Schannel on Vista: http://msdn.microsoft.com/en-us/library/windows/desktop/ff468651(v=vs.85).aspx
  • ciphers in IE7..10 on various Windows versions: https://github.com/client9/sslassert/wiki/IE-Supported-Cipher-Suites

Apart from that, why would you want to implement all cipher suites supported by IE? Some of them are only to connect to legacy SSL implementations. The usual way is to support a number of secure ciphers, enough so that one finds a shared cipher with the common client implementations.

like image 162
Steffen Ullrich Avatar answered Dec 07 '25 04:12

Steffen Ullrich


Qualys SSL Labs publishes a more graphical view. Select your desired version of IE and OS from the list for more details.

  • https://www.ssllabs.com/ssltest/clients.html
like image 31
Altered-Ego Avatar answered Dec 07 '25 02:12

Altered-Ego



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!