Detect browser TLS compatibility Detect browser TLS compatibility javascript javascript

Detect browser TLS compatibility


You can use the API provided by How's my SSL?.

In the following example, I check the tls_version. Checking given_cipher_suites may also be a good idea.

<script>window.parseTLSinfo = function(data) {  var version = data.tls_version.split(' ');  console.log(    version[0] != 'TLS' || version[1] < 1.2    ? 'So bad! Your browser only supports ' + data.tls_version + '. Please upgrade to a browser with TLS 1.2 support.'    : 'All OK. Your browser supports ' + data.tls_version + '.'  );  console.log(data);};</script><script src="https://www.howsmyssl.com/a/check?callback=parseTLSinfo"></script>