Thu, 11 Jul 2024 14:21:34 +0200
MicroPython
- Updated the list of known CircuitPython boards for CPy 9.1.0.
- Updated the list of known UF2 capable boards.
# -*- coding: utf-8 -*- # Copyright (c) 2015 - 2024 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing SSL utility functions. """ def initSSL(): """ Function to initialize some global SSL stuff. """ try: from PyQt6.QtNetwork import QSslConfiguration # __IGNORE_WARNING_I10__ except ImportError: # no SSL available, so there is nothing to initialize return blocklist = [ "SRP-AES-256-CBC-SHA", # open to MitM "SRP-AES-128-CBC-SHA", # open to MitM ] strongCiphers = [ c for c in QSslConfiguration.supportedCiphers() if c.name() not in blocklist and c.usedBits() >= 128 ] defaultSslConfiguration = QSslConfiguration.defaultConfiguration() defaultSslConfiguration.setCiphers(strongCiphers) QSslConfiguration.setDefaultConfiguration(defaultSslConfiguration)