--- a/src/eric7/EricNetwork/EricSslUtilities.py Sun Jan 14 13:02:05 2024 +0100 +++ b/src/eric7/EricNetwork/EricSslUtilities.py Tue Jan 16 14:18:52 2024 +0100 @@ -18,7 +18,7 @@ # no SSL available, so there is nothing to initialize return - blacklist = [ + blocklist = [ "SRP-AES-256-CBC-SHA", # open to MitM "SRP-AES-128-CBC-SHA", # open to MitM ] @@ -26,7 +26,7 @@ strongCiphers = [ c for c in QSslConfiguration.supportedCiphers() - if c.name() not in blacklist and c.usedBits() >= 128 + if c.name() not in blocklist and c.usedBits() >= 128 ] defaultSslConfiguration = QSslConfiguration.defaultConfiguration() defaultSslConfiguration.setCiphers(strongCiphers)