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

30,717

Solution 1

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

Solution 2

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:

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.

Share:
30,717
rashok
Author by

rashok

A Passionate Developer

Updated on July 02, 2020

Comments

  • rashok
    rashok almost 4 years

    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 ?