1
0

- update to 22.1.0:

* Remove support for SSLv2 and SSLv3.
  * The minimum ``cryptography`` version is now 37.0.2.
  * The ``OpenSSL.crypto.X509StoreContextError`` exception has been refactored,
    changing its internal attributes.
  * Add ``OpenSSL.SSL.Connection.set_verify`` and ``OpenSSL.SSL.Connection.get_verify_mode``
    to override the context object's verification flags.
  * Add ``OpenSSL.SSL.Connection.use_certificate`` and
    ``OpenSSL.SSL.Connection.use_privatekey``
    to set a certificate per connection (and not just per context)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyOpenSSL?expand=0&rev=95
This commit is contained in:
2022-09-29 19:34:28 +00:00
committed by Git OBS Bridge
parent 96d9d4a23f
commit fcf55eaaab
5 changed files with 32 additions and 14 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Thu Sep 29 19:33:29 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 22.1.0:
* Remove support for SSLv2 and SSLv3.
* The minimum ``cryptography`` version is now 37.0.2.
* The ``OpenSSL.crypto.X509StoreContextError`` exception has been refactored,
changing its internal attributes.
* Add ``OpenSSL.SSL.Connection.set_verify`` and ``OpenSSL.SSL.Connection.get_verify_mode``
to override the context object's verification flags.
* Add ``OpenSSL.SSL.Connection.use_certificate`` and
``OpenSSL.SSL.Connection.use_privatekey``
to set a certificate per connection (and not just per context)
-------------------------------------------------------------------
Wed Jun 1 08:25:21 UTC 2022 - Steve Kowalik <steven.kowalik@suse.com>