This is about Chrome 50 and later. When visiting an https site, where can I find the negotiated cipher suite? I know where to find this info in previous versions of Chrome but I'm not able to find it in versions greater or equal to 50.
1 Answers
Update:
More recent Chrome versions make it both easier and harder.
The bad news: The “Details” link has been removed. Now you have to open the Developer Tools with Crtl
+Shift
+I
or Cmd
+Opt
+I
, or by clicking on the ⋮ Chrome menu > “More tools” > “Developer tools”, and then click on the “Security” tab.
More positively, the information has now been added to the “ Overview” section without reloading, and includes the key exchange group (e.g. the elliptic curve P-256).
another update: in the newest versions [I'm on the 64 bit version 59.0.3071.115] looks like there is a specific security tab to display this info in the Developer Tools:
Original Instructions
Click on the lock icon in the location bar
Click on the “Details” link next to “Your connection to this site is private.” This opens the Security tab of the Developer Tools.
Reload the page.
The Security thing’s left column goes “ Overview”, “Main Origin”… Click on the next one, “⚫ https://security.stackexchange.com”.
Connection Protocol TLS 1.2 Key Exchange ECDHE_ECDSA Cipher Suite AES_128_GCM
Yay!
- 113
- 6
- 3,430
- 1
- 21
- 16
-
7Used to be much more handy in previous versions. Now the console has to be opened to get the info. – stratis Apr 18 '16 at 08:55
-
It used to also display whether it was using an obsolete cipher suite too. Now I have to look it up to check whether it's an obsolete one. – PaulSkinner Apr 26 '16 at 09:00
-
2It **doesn't show details** like what SHA has been used, e.g. SHA256 and whether it was with P-256 elliptic curve [FIPS186]. I know that because I configured the cipher suite order. – Bart Verkoeijen Jul 11 '16 at 10:37
-
4In Chrome 69 it's all under the Security tab in in the Developer's Tools. Here you can see the protocol, the hash algorithm, and the certificate details. It will also give you details about the reliability of the cipher used. – David Baucum Sep 25 '18 at 20:24