You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I made auth_suite setting optional and it defaults to ssl.PROTOCOL_TLS_SERVER in #720 . You might want to put some kind of deprecation warning that Python will drop support of those older TLS settings at some point and everyone should just use the "secure by default" settings.
I also synced the patches from the propesed Python 3.12 support #707 but as I mentioned in the comments of the pull request, the tests are so complicated that I didn't really have time to figure out how to fix them. However my Synology NAS was able to connect to a server running my patches.
All supported Python versions have deprecated TLS version specific configurations.
Clients should always use:
ssl.PROTOCOL_TLS_CLIENT
Servers should always use:
ssl.PROTOCOL_TLS_SERVER
https://docs.python.org/dev/library/ssl.html
The text was updated successfully, but these errors were encountered: