From 6b9b120500e42abad9640f7494c6930ae49ed3aff62efae868a4c1b4c4c51982 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Fri, 18 Sep 2020 11:16:26 +0000 Subject: [PATCH 1/4] - update to 3.1: * **BACKWARDS INCOMPATIBLE:** Removed support for ``idna`` based :term:`U-label` parsing in various X.509 classes. This support was originally deprecated in version 2.1 and moved to an extra in 2.5. * Deprecated OpenSSL 1.0.2 support. OpenSSL 1.0.2 is no longer supported by the OpenSSL project. The next version of ``cryptography`` will drop support for it. * Deprecated support for Python 3.5. This version sees very little use and will be removed in the next release. * ``backend`` arguments to functions are no longer required and the default backend will automatically be selected if no ``backend`` is provided. * Added initial support for parsing certificates from PKCS7 files with :func:`~cryptography.hazmat.primitives.serialization.pkcs7.load_pem_pkcs7_certificates` and :func:`~cryptography.hazmat.primitives.serialization.pkcs7.load_der_pkcs7_certificates` . * Calling ``update`` or ``update_into`` on :class:`~cryptography.hazmat.primitives.ciphers.CipherContext` with ``data`` longer than 2\ :sup:`31` bytes no longer raises an ``OverflowError``. This also resolves the same issue in :doc:`/fernet`. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cryptography?expand=0&rev=124 --- cryptography-3.0.tar.gz | 3 --- cryptography-3.0.tar.gz.asc | 11 ----------- cryptography-3.1.tar.gz | 3 +++ cryptography-3.1.tar.gz.asc | 11 +++++++++++ python-cryptography.changes | 24 ++++++++++++++++++++++++ python-cryptography.spec | 2 +- 6 files changed, 39 insertions(+), 15 deletions(-) delete mode 100644 cryptography-3.0.tar.gz delete mode 100644 cryptography-3.0.tar.gz.asc create mode 100644 cryptography-3.1.tar.gz create mode 100644 cryptography-3.1.tar.gz.asc diff --git a/cryptography-3.0.tar.gz b/cryptography-3.0.tar.gz deleted file mode 100644 index 158a2f6..0000000 --- a/cryptography-3.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8e924dbc025206e97756e8903039662aa58aa9ba357d8e1d8fc29e3092322053 -size 534725 diff --git a/cryptography-3.0.tar.gz.asc b/cryptography-3.0.tar.gz.asc deleted file mode 100644 index d17911b..0000000 --- a/cryptography-3.0.tar.gz.asc +++ /dev/null @@ -1,11 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQEzBAABCAAdFiEEBf2foWz3VzUNkaVgI1rl8Sn57ZgFAl8WGscACgkQI1rl8Sn5 -7ZiG/Af/dlShgMX5PLP6G+S9iXdSX9Zu6rlJUeQ8QkoaL268KoBe6Y+LHRwDoblk -8iIwN3KYxNqVqEVrve/nr3ju5YoFWXjrA755W13j5ehLN1Tn+s9Apxe2Ye8OhSNa -MrIdzWAMaEl2DpArr2zBxockEuLqb06Uj29YfYQKcmSKwFvzmJtozw1VscwyQS70 -GJ4MzWnbvIIbwpDlwNDiHkR8OE3JR5aDDuYdX0ADWHxK2ExCKS6kP4gI9pamVt6L -RgmJKHfjrbv/hhgrg64PjXH8WRXMKDXs6j5zGRo6Gvg4gnyISvQF7+1piaIsp9bP -BFyuqnIGeMqhwcC/dtGsq/fxJOHurw== -=mZPL ------END PGP SIGNATURE----- diff --git a/cryptography-3.1.tar.gz b/cryptography-3.1.tar.gz new file mode 100644 index 0000000..cd3d7b2 --- /dev/null +++ b/cryptography-3.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26409a473cc6278e4c90f782cd5968ebad04d3911ed1c402fc86908c17633e08 +size 534747 diff --git a/cryptography-3.1.tar.gz.asc b/cryptography-3.1.tar.gz.asc new file mode 100644 index 0000000..72070ef --- /dev/null +++ b/cryptography-3.1.tar.gz.asc @@ -0,0 +1,11 @@ +-----BEGIN PGP SIGNATURE----- + +iQEzBAABCAAdFiEEBf2foWz3VzUNkaVgI1rl8Sn57ZgFAl9HN/kACgkQI1rl8Sn5 +7ZhQpgf7BxSAXHOG2hDlNlH4yzNuqRQ5EaHcn/qrVH4KI6KeN11rPq/hLFxZTDQl +J2C+MBuGfP0OSw//18fXz597EQLkBF4lx4Gta3kJ7U3qSTD9Le3fm5lajQL1Yr9M +rIuMYu8gzgqLhZYfU0Is39aTU2NTNwKNQi2bPs/2cdtwo9Fuz2zzA8fGADyKVDxq +rvLiuZVxZjhj+cQCqIHXJLfIecQq3X+1FCr41Fb1y+FygjzfKwNwihclWApNVk4Z +YHHf9WE99l6Hqt3r5WrhxGVSXA6mUWRqt7f5ZyxWwEzmI9VcvUimP1vnxMxgEOk5 +b5G/M8bkC6XVsdCOg+vKuEVhNN87Iw== +=JlKt +-----END PGP SIGNATURE----- diff --git a/python-cryptography.changes b/python-cryptography.changes index 17e50e0..4b196bc 100644 --- a/python-cryptography.changes +++ b/python-cryptography.changes @@ -1,3 +1,27 @@ +------------------------------------------------------------------- +Fri Sep 18 11:15:53 UTC 2020 - Dirk Mueller + +- update to 3.1: + * **BACKWARDS INCOMPATIBLE:** Removed support for ``idna`` based + :term:`U-label` parsing in various X.509 classes. This support was originally + deprecated in version 2.1 and moved to an extra in 2.5. + * Deprecated OpenSSL 1.0.2 support. OpenSSL 1.0.2 is no longer supported by + the OpenSSL project. The next version of ``cryptography`` will drop support + for it. + * Deprecated support for Python 3.5. This version sees very little use and will + be removed in the next release. + * ``backend`` arguments to functions are no longer required and the + default backend will automatically be selected if no ``backend`` is provided. + * Added initial support for parsing certificates from PKCS7 files with + :func:`~cryptography.hazmat.primitives.serialization.pkcs7.load_pem_pkcs7_certificates` + and + :func:`~cryptography.hazmat.primitives.serialization.pkcs7.load_der_pkcs7_certificates` + . + * Calling ``update`` or ``update_into`` on + :class:`~cryptography.hazmat.primitives.ciphers.CipherContext` with ``data`` + longer than 2\ :sup:`31` bytes no longer raises an ``OverflowError``. This + also resolves the same issue in :doc:`/fernet`. + ------------------------------------------------------------------- Tue Jul 28 17:16:47 UTC 2020 - Ondřej Súkup diff --git a/python-cryptography.spec b/python-cryptography.spec index 480b051..a5b55fa 100644 --- a/python-cryptography.spec +++ b/python-cryptography.spec @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %bcond_without python2 Name: python-cryptography -Version: 3.0 +Version: 3.1 Release: 0 Summary: Python library which exposes cryptographic recipes and primitives License: Apache-2.0 OR BSD-3-Clause From 4ba9d2721362051fb43129cd1184a778c9efb8836c9b4614823815229969a427 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 28 Sep 2020 10:55:56 +0000 Subject: [PATCH 2/4] - update to 3.1.1: * wheels compiled with OpenSSL 1.1.1h. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cryptography?expand=0&rev=125 --- cryptography-3.1.1.tar.gz | 3 +++ cryptography-3.1.1.tar.gz.asc | 11 +++++++++++ cryptography-3.1.tar.gz | 3 --- cryptography-3.1.tar.gz.asc | 11 ----------- python-cryptography.changes | 6 ++++++ python-cryptography.spec | 2 +- 6 files changed, 21 insertions(+), 15 deletions(-) create mode 100644 cryptography-3.1.1.tar.gz create mode 100644 cryptography-3.1.1.tar.gz.asc delete mode 100644 cryptography-3.1.tar.gz delete mode 100644 cryptography-3.1.tar.gz.asc diff --git a/cryptography-3.1.1.tar.gz b/cryptography-3.1.1.tar.gz new file mode 100644 index 0000000..f67db6f --- /dev/null +++ b/cryptography-3.1.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d9fc6a16357965d282dd4ab6531013935425d0dc4950df2e0cf2a1b1ac1017d +size 534926 diff --git a/cryptography-3.1.1.tar.gz.asc b/cryptography-3.1.1.tar.gz.asc new file mode 100644 index 0000000..0d5d670 --- /dev/null +++ b/cryptography-3.1.1.tar.gz.asc @@ -0,0 +1,11 @@ +-----BEGIN PGP SIGNATURE----- + +iQEzBAABCAAdFiEEBf2foWz3VzUNkaVgI1rl8Sn57ZgFAl9qLroACgkQI1rl8Sn5 +7ZjBRgf/TW0/byolWTi7dzFl/yy4ghEQDdOvl5CW74ChGjHNqC0IkR/OgYC3lEgX +Plk8T9RXwhTCgisNq6vuEyeaK61SycI22Nrtcwwl+OesLJotU46YHkiuMg9mR82u +F9vMElvO2gvngMCTOShXiywiHJmGXsUbNITsnBTSbFIwaK7gx2w1trE97H27nvrg +wVYcySHwV3JabeYggqyUNEOfVDI5tiVpYteRhjFXV+o06NtnH5R5csjv6AmJRAZ9 +/+KCx/kJStn7fVbFwhZ/oZZz1DN62ORm1Z99GfhYsa41g2VugVO36UEcibvKnXNu +UHnDaq5c2LzIgh5+lPVrQBIWVj1Btw== +=F1yj +-----END PGP SIGNATURE----- diff --git a/cryptography-3.1.tar.gz b/cryptography-3.1.tar.gz deleted file mode 100644 index cd3d7b2..0000000 --- a/cryptography-3.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:26409a473cc6278e4c90f782cd5968ebad04d3911ed1c402fc86908c17633e08 -size 534747 diff --git a/cryptography-3.1.tar.gz.asc b/cryptography-3.1.tar.gz.asc deleted file mode 100644 index 72070ef..0000000 --- a/cryptography-3.1.tar.gz.asc +++ /dev/null @@ -1,11 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQEzBAABCAAdFiEEBf2foWz3VzUNkaVgI1rl8Sn57ZgFAl9HN/kACgkQI1rl8Sn5 -7ZhQpgf7BxSAXHOG2hDlNlH4yzNuqRQ5EaHcn/qrVH4KI6KeN11rPq/hLFxZTDQl -J2C+MBuGfP0OSw//18fXz597EQLkBF4lx4Gta3kJ7U3qSTD9Le3fm5lajQL1Yr9M -rIuMYu8gzgqLhZYfU0Is39aTU2NTNwKNQi2bPs/2cdtwo9Fuz2zzA8fGADyKVDxq -rvLiuZVxZjhj+cQCqIHXJLfIecQq3X+1FCr41Fb1y+FygjzfKwNwihclWApNVk4Z -YHHf9WE99l6Hqt3r5WrhxGVSXA6mUWRqt7f5ZyxWwEzmI9VcvUimP1vnxMxgEOk5 -b5G/M8bkC6XVsdCOg+vKuEVhNN87Iw== -=JlKt ------END PGP SIGNATURE----- diff --git a/python-cryptography.changes b/python-cryptography.changes index 4b196bc..eacaae3 100644 --- a/python-cryptography.changes +++ b/python-cryptography.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Sep 28 10:49:56 UTC 2020 - Dirk Mueller + +- update to 3.1.1: + * wheels compiled with OpenSSL 1.1.1h. + ------------------------------------------------------------------- Fri Sep 18 11:15:53 UTC 2020 - Dirk Mueller diff --git a/python-cryptography.spec b/python-cryptography.spec index a5b55fa..a81fa54 100644 --- a/python-cryptography.spec +++ b/python-cryptography.spec @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %bcond_without python2 Name: python-cryptography -Version: 3.1 +Version: 3.1.1 Release: 0 Summary: Python library which exposes cryptographic recipes and primitives License: Apache-2.0 OR BSD-3-Clause From ea489a9bb45ba21d3fb18b4eb1a1947207a86519680f3437687071ec187a0ae7 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 26 Oct 2020 14:11:17 +0000 Subject: [PATCH 3/4] Accepting request 844069 from home:stroeder:branches:devel:languages:python - update to 3.2: * CVE-2020-25659: Attempted to make RSA PKCS#1v1.5 decryption more constant time, to protect against Bleichenbacher vulnerabilities. Due to limitations imposed by our API, we cannot completely mitigate this vulnerability. * Support for OpenSSL 1.0.2 has been removed. * Added basic support for PKCS7 signing (including SMIME) via PKCS7SignatureBuilder. OBS-URL: https://build.opensuse.org/request/show/844069 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cryptography?expand=0&rev=126 --- cryptography-3.1.1.tar.gz | 3 --- cryptography-3.1.1.tar.gz.asc | 11 ----------- cryptography-3.2.tar.gz | 3 +++ cryptography-3.2.tar.gz.asc | 11 +++++++++++ python-cryptography.changes | 10 ++++++++++ python-cryptography.spec | 2 +- 6 files changed, 25 insertions(+), 15 deletions(-) delete mode 100644 cryptography-3.1.1.tar.gz delete mode 100644 cryptography-3.1.1.tar.gz.asc create mode 100644 cryptography-3.2.tar.gz create mode 100644 cryptography-3.2.tar.gz.asc diff --git a/cryptography-3.1.1.tar.gz b/cryptography-3.1.1.tar.gz deleted file mode 100644 index f67db6f..0000000 --- a/cryptography-3.1.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9d9fc6a16357965d282dd4ab6531013935425d0dc4950df2e0cf2a1b1ac1017d -size 534926 diff --git a/cryptography-3.1.1.tar.gz.asc b/cryptography-3.1.1.tar.gz.asc deleted file mode 100644 index 0d5d670..0000000 --- a/cryptography-3.1.1.tar.gz.asc +++ /dev/null @@ -1,11 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQEzBAABCAAdFiEEBf2foWz3VzUNkaVgI1rl8Sn57ZgFAl9qLroACgkQI1rl8Sn5 -7ZjBRgf/TW0/byolWTi7dzFl/yy4ghEQDdOvl5CW74ChGjHNqC0IkR/OgYC3lEgX -Plk8T9RXwhTCgisNq6vuEyeaK61SycI22Nrtcwwl+OesLJotU46YHkiuMg9mR82u -F9vMElvO2gvngMCTOShXiywiHJmGXsUbNITsnBTSbFIwaK7gx2w1trE97H27nvrg -wVYcySHwV3JabeYggqyUNEOfVDI5tiVpYteRhjFXV+o06NtnH5R5csjv6AmJRAZ9 -/+KCx/kJStn7fVbFwhZ/oZZz1DN62ORm1Z99GfhYsa41g2VugVO36UEcibvKnXNu -UHnDaq5c2LzIgh5+lPVrQBIWVj1Btw== -=F1yj ------END PGP SIGNATURE----- diff --git a/cryptography-3.2.tar.gz b/cryptography-3.2.tar.gz new file mode 100644 index 0000000..c4f6e46 --- /dev/null +++ b/cryptography-3.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4789b84f8dedf190148441f7c5bfe7244782d9cbb194a36e17b91e7d3e1cca9 +size 540815 diff --git a/cryptography-3.2.tar.gz.asc b/cryptography-3.2.tar.gz.asc new file mode 100644 index 0000000..6d76db2 --- /dev/null +++ b/cryptography-3.2.tar.gz.asc @@ -0,0 +1,11 @@ +-----BEGIN PGP SIGNATURE----- + +iQEzBAABCAAdFiEEBf2foWz3VzUNkaVgI1rl8Sn57ZgFAl+WMFIACgkQI1rl8Sn5 +7Zg9zAf/aM7BJeAS6SYElkKSZmVM7pnv97fR7jhEuywKYxyRXcpx0EPUwTJYZq2e +ZpbcBqaXXzGgwpj+aB5gsv76C0wntQ9s/tQoP5m/X9ISNfnmeAp5vc0m6/dKpXeE +RzWF6GoSyzZO+wN/W0VYCdzQoE18xrP8yGY067sWkx8Y1kp7eyN+O3tWh75DY5pz +GItzHshlTAcuASmrjMvZBmCiZPxgA7M1ZrdDctm8M5kRjEj7rTr65EsEV7d6kVPl +iNyH22mPj+r8pm0cqq/AIBsdMQu5iRrxtFBrBvd0UIazU5lS/TSGhLL7LM+pBlFv +BiUlCMi0PgJijtZVFXKOpGP4A9IqrQ== +=fGCc +-----END PGP SIGNATURE----- diff --git a/python-cryptography.changes b/python-cryptography.changes index eacaae3..be9d7ac 100644 --- a/python-cryptography.changes +++ b/python-cryptography.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Mon Oct 26 11:39:02 UTC 2020 - Michael Ströder + +- update to 3.2: + * CVE-2020-25659: Attempted to make RSA PKCS#1v1.5 decryption more constant time, + to protect against Bleichenbacher vulnerabilities. Due to limitations imposed + by our API, we cannot completely mitigate this vulnerability. + * Support for OpenSSL 1.0.2 has been removed. + * Added basic support for PKCS7 signing (including SMIME) via PKCS7SignatureBuilder. + ------------------------------------------------------------------- Mon Sep 28 10:49:56 UTC 2020 - Dirk Mueller diff --git a/python-cryptography.spec b/python-cryptography.spec index a81fa54..d9b5707 100644 --- a/python-cryptography.spec +++ b/python-cryptography.spec @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %bcond_without python2 Name: python-cryptography -Version: 3.1.1 +Version: 3.2 Release: 0 Summary: Python library which exposes cryptographic recipes and primitives License: Apache-2.0 OR BSD-3-Clause From 021f24b88ad4c3499ed8cc4a8a5c191ed75f3aeffe3a4ffc853519ffff15158f Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Wed, 28 Oct 2020 21:43:09 +0000 Subject: [PATCH 4/4] Accepting request 844617 from home:stroeder:branches:devel:languages:python update to 3.2.1 OBS-URL: https://build.opensuse.org/request/show/844617 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cryptography?expand=0&rev=127 --- cryptography-3.2.1.tar.gz | 3 +++ cryptography-3.2.1.tar.gz.asc | 11 +++++++++++ cryptography-3.2.tar.gz | 3 --- cryptography-3.2.tar.gz.asc | 11 ----------- python-cryptography.changes | 7 +++++++ python-cryptography.spec | 2 +- 6 files changed, 22 insertions(+), 15 deletions(-) create mode 100644 cryptography-3.2.1.tar.gz create mode 100644 cryptography-3.2.1.tar.gz.asc delete mode 100644 cryptography-3.2.tar.gz delete mode 100644 cryptography-3.2.tar.gz.asc diff --git a/cryptography-3.2.1.tar.gz b/cryptography-3.2.1.tar.gz new file mode 100644 index 0000000..6bc2da4 --- /dev/null +++ b/cryptography-3.2.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3d5e10be0cf2a12214ddee45c6bd203dab435e3d83b4560c03066eda600bfe3 +size 540994 diff --git a/cryptography-3.2.1.tar.gz.asc b/cryptography-3.2.1.tar.gz.asc new file mode 100644 index 0000000..015d7b2 --- /dev/null +++ b/cryptography-3.2.1.tar.gz.asc @@ -0,0 +1,11 @@ +-----BEGIN PGP SIGNATURE----- + +iQEzBAABCAAdFiEEBf2foWz3VzUNkaVgI1rl8Sn57ZgFAl+Y4vIACgkQI1rl8Sn5 +7Zjevwf/U2fOwxUOJPN0/YBDqatPIu7sg+2+6m9rUecj01fjZIkeT9nuZBMenzxN +JBLDKOcb24mQ+HjCKEq4TfzS43rgvaoXsClSQwO5/rmYYOR8IUMdK+NWjvOqYc6H +0U3LhcZ/JakM5OoB7miOLCYE1o3EjikmT93QjEPENdul4a5h6an0HYPUvwHWX0ok +XekBnkoe26gZE2pCQepcLd3KChmD0wwu9Zu1hV4zoVMVR19hnVuP6JWcCn+IdrAz +p7ak9++3VSR2d4fDcObp20EXC6fJqMPvTFeM1k+krQ6JGFuRLktKW5NW3qu9WmnG +b0RZa7sMTCpG4hdinsYPZvEvIY5pzQ== +=/+zZ +-----END PGP SIGNATURE----- diff --git a/cryptography-3.2.tar.gz b/cryptography-3.2.tar.gz deleted file mode 100644 index c4f6e46..0000000 --- a/cryptography-3.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e4789b84f8dedf190148441f7c5bfe7244782d9cbb194a36e17b91e7d3e1cca9 -size 540815 diff --git a/cryptography-3.2.tar.gz.asc b/cryptography-3.2.tar.gz.asc deleted file mode 100644 index 6d76db2..0000000 --- a/cryptography-3.2.tar.gz.asc +++ /dev/null @@ -1,11 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQEzBAABCAAdFiEEBf2foWz3VzUNkaVgI1rl8Sn57ZgFAl+WMFIACgkQI1rl8Sn5 -7Zg9zAf/aM7BJeAS6SYElkKSZmVM7pnv97fR7jhEuywKYxyRXcpx0EPUwTJYZq2e -ZpbcBqaXXzGgwpj+aB5gsv76C0wntQ9s/tQoP5m/X9ISNfnmeAp5vc0m6/dKpXeE -RzWF6GoSyzZO+wN/W0VYCdzQoE18xrP8yGY067sWkx8Y1kp7eyN+O3tWh75DY5pz -GItzHshlTAcuASmrjMvZBmCiZPxgA7M1ZrdDctm8M5kRjEj7rTr65EsEV7d6kVPl -iNyH22mPj+r8pm0cqq/AIBsdMQu5iRrxtFBrBvd0UIazU5lS/TSGhLL7LM+pBlFv -BiUlCMi0PgJijtZVFXKOpGP4A9IqrQ== -=fGCc ------END PGP SIGNATURE----- diff --git a/python-cryptography.changes b/python-cryptography.changes index be9d7ac..e79cf2a 100644 --- a/python-cryptography.changes +++ b/python-cryptography.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Wed Oct 28 14:29:05 UTC 2020 - Michael Ströder + +- update to 3.2.1: + Disable blinding on RSA public keys to address an error with + some versions of OpenSSL. + ------------------------------------------------------------------- Mon Oct 26 11:39:02 UTC 2020 - Michael Ströder diff --git a/python-cryptography.spec b/python-cryptography.spec index d9b5707..65f2ea8 100644 --- a/python-cryptography.spec +++ b/python-cryptography.spec @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %bcond_without python2 Name: python-cryptography -Version: 3.2 +Version: 3.2.1 Release: 0 Summary: Python library which exposes cryptographic recipes and primitives License: Apache-2.0 OR BSD-3-Clause