Sun, 03 Jan 2021 15:31:01 +0100
E5SslInfoWidget: fixed an issue causing TLS v1.3 certificates not being recognized.
eric6/E5Network/E5SslInfoWidget.py | file | annotate | diff | comparison | revisions |
--- a/eric6/E5Network/E5SslInfoWidget.py Sat Jan 02 17:28:57 2021 +0100 +++ b/eric6/E5Network/E5SslInfoWidget.py Sun Jan 03 15:31:01 2021 +0100 @@ -157,8 +157,8 @@ UI.PixmapCache.getPixmap("securityHigh32")) try: # Qt 5.12 and newer - if proto == QSsl.TlsV1_2: - sslVersion = "TLS 1.2" + if proto == QSsl.TlsV1_3: + sslVersion = "TLS 1.3" imageLabel.setPixmap( UI.PixmapCache.getPixmap("securityHigh32")) except AttributeError: