- 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
This commit is contained in:
parent
5622a86892
commit
6b9b120500
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8e924dbc025206e97756e8903039662aa58aa9ba357d8e1d8fc29e3092322053
|
||||
size 534725
|
@ -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-----
|
3
cryptography-3.1.tar.gz
Normal file
3
cryptography-3.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:26409a473cc6278e4c90f782cd5968ebad04d3911ed1c402fc86908c17633e08
|
||||
size 534747
|
11
cryptography-3.1.tar.gz.asc
Normal file
11
cryptography-3.1.tar.gz.asc
Normal file
@ -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-----
|
@ -1,3 +1,27 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 18 11:15:53 UTC 2020 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- 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 <mimi.vx@gmail.com>
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user