diff options
author | adam <adam@pkgsrc.org> | 2019-02-28 09:06:08 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2019-02-28 09:06:08 +0000 |
commit | e12e071f010490982ff6bce87c4e3eec84058ae9 (patch) | |
tree | 62fb55bacef7c8dc53aec8204dda7701365d4330 /security | |
parent | 59f0097f7e1a699298484597d494ff71588f345a (diff) | |
download | pkgsrc-e12e071f010490982ff6bce87c4e3eec84058ae9.tar.gz |
py-cryptography[_vectors]: updated to 2.6.1
2.6.1:
* Resolved an error in our build infrastructure that broke our Python3 wheels
for macOS and Linux.
2.6:
* **BACKWARDS INCOMPATIBLE:** Removed
cryptography.hazmat.primitives.asymmetric.utils.encode_rfc6979_signature
and
cryptography.hazmat.primitives.asymmetric.utils.decode_rfc6979_signature,
which had been deprecated for nearly 4 years. Use
:func:~cryptography.hazmat.primitives.asymmetric.utils.encode_dss_signature
and
:func:~cryptography.hazmat.primitives.asymmetric.utils.decode_dss_signature
instead.
* **BACKWARDS INCOMPATIBLE**: Removed cryptography.x509.Certificate.serial,
which had been deprecated for nearly 3 years. Use
:attr:~cryptography.x509.Certificate.serial_number instead.
* Updated Windows, macOS, and manylinux1 wheels to be compiled with
OpenSSL 1.1.1b.
* Added support for :doc:/hazmat/primitives/asymmetric/ed448 when using
OpenSSL 1.1.1b or newer.
* Added support for :doc:/hazmat/primitives/asymmetric/ed25519 when using
OpenSSL 1.1.1b or newer.
* :func:~cryptography.hazmat.primitives.serialization.load_ssh_public_key can
now load ed25519 public keys.
* Add support for easily mapping an object identifier to its elliptic curve
class via
:func:~cryptography.hazmat.primitives.asymmetric.ec.get_curve_for_oid.
* Add support for OpenSSL when compiled with the no-engine
(OPENSSL_NO_ENGINE) flag.
Diffstat (limited to 'security')
-rw-r--r-- | security/py-cryptography/Makefile | 4 | ||||
-rw-r--r-- | security/py-cryptography/PLIST | 14 | ||||
-rw-r--r-- | security/py-cryptography/distinfo | 10 | ||||
-rw-r--r-- | security/py-cryptography_vectors/Makefile | 4 | ||||
-rw-r--r-- | security/py-cryptography_vectors/PLIST | 14 | ||||
-rw-r--r-- | security/py-cryptography_vectors/distinfo | 10 |
6 files changed, 40 insertions, 16 deletions
diff --git a/security/py-cryptography/Makefile b/security/py-cryptography/Makefile index e6dcb90ec2e..f3449d68054 100644 --- a/security/py-cryptography/Makefile +++ b/security/py-cryptography/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.71 2019/01/23 12:21:04 adam Exp $ +# $NetBSD: Makefile,v 1.72 2019/02/28 09:06:08 adam Exp $ -DISTNAME= cryptography-2.5 +DISTNAME= cryptography-2.6.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= security python MASTER_SITES= ${MASTER_SITE_PYPI:=c/cryptography/} diff --git a/security/py-cryptography/PLIST b/security/py-cryptography/PLIST index 778aa061e6f..bdd6d3f1882 100644 --- a/security/py-cryptography/PLIST +++ b/security/py-cryptography/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.22 2019/01/23 12:21:04 adam Exp $ +@comment $NetBSD: PLIST,v 1.23 2019/02/28 09:06:08 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -56,6 +56,12 @@ ${PYSITELIB}/cryptography/hazmat/backends/openssl/dsa.pyo ${PYSITELIB}/cryptography/hazmat/backends/openssl/ec.py ${PYSITELIB}/cryptography/hazmat/backends/openssl/ec.pyc ${PYSITELIB}/cryptography/hazmat/backends/openssl/ec.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/ed25519.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/ed25519.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/ed25519.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/ed448.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/ed448.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/ed448.pyo ${PYSITELIB}/cryptography/hazmat/backends/openssl/encode_asn1.py ${PYSITELIB}/cryptography/hazmat/backends/openssl/encode_asn1.pyc ${PYSITELIB}/cryptography/hazmat/backends/openssl/encode_asn1.pyo @@ -116,6 +122,12 @@ ${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/dsa.pyo ${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ec.py ${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ec.pyc ${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ec.pyo +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ed25519.py +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ed25519.pyc +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ed25519.pyo +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ed448.py +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ed448.pyc +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ed448.pyo ${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/padding.py ${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/padding.pyc ${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/padding.pyo diff --git a/security/py-cryptography/distinfo b/security/py-cryptography/distinfo index 68598545854..d76add44c30 100644 --- a/security/py-cryptography/distinfo +++ b/security/py-cryptography/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.57 2019/01/23 12:21:04 adam Exp $ +$NetBSD: distinfo,v 1.58 2019/02/28 09:06:08 adam Exp $ -SHA1 (cryptography-2.5.tar.gz) = 2ea575820db5aa6a2d6691b514692433bcdec5d9 -RMD160 (cryptography-2.5.tar.gz) = a3d143d2a9623345ff50ce2f37eb3e982264cebc -SHA512 (cryptography-2.5.tar.gz) = 5e8f8818fcaa8143526006b027107b8afbdc925d40c846701e65b2c7ee02235b7e0918246515520ef2030b1c87bb157d0d403c28ad68c31459d677af7e2d0b3f -Size (cryptography-2.5.tar.gz) = 487694 bytes +SHA1 (cryptography-2.6.1.tar.gz) = 0a14cbcdf1bc0262303912762d94cfd645e8c8de +RMD160 (cryptography-2.6.1.tar.gz) = 2bab285a27bfed6fff8addc2322b8db3687ef2d1 +SHA512 (cryptography-2.6.1.tar.gz) = f14319e24d9dca52e74548cada5b78a6235f089ef875dbff4799e862f94da8b087f1b6e03e84dcef9fc7d7693c4a349c5f0cd54b8535806da777420ce8757d39 +Size (cryptography-2.6.1.tar.gz) = 491580 bytes diff --git a/security/py-cryptography_vectors/Makefile b/security/py-cryptography_vectors/Makefile index f11fc88e77a..bb1742a29b7 100644 --- a/security/py-cryptography_vectors/Makefile +++ b/security/py-cryptography_vectors/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.19 2019/01/23 12:21:04 adam Exp $ +# $NetBSD: Makefile,v 1.20 2019/02/28 09:06:08 adam Exp $ -DISTNAME= cryptography_vectors-2.5 +DISTNAME= cryptography_vectors-2.6.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= security python MASTER_SITES= ${MASTER_SITE_PYPI:=c/cryptography_vectors/} diff --git a/security/py-cryptography_vectors/PLIST b/security/py-cryptography_vectors/PLIST index eaace5e7357..d4fd1c478ee 100644 --- a/security/py-cryptography_vectors/PLIST +++ b/security/py-cryptography_vectors/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.10 2019/01/23 12:21:04 adam Exp $ +@comment $NetBSD: PLIST,v 1.11 2019/02/28 09:06:08 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -98,7 +98,19 @@ ${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/SigGen.rsp ${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/SigGen.txt ${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/SigVer.rsp ${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/SECP256K1/SigGen.txt +${PYSITELIB}/cryptography_vectors/asymmetric/Ed25519/ed25519-pkcs8-enc.der +${PYSITELIB}/cryptography_vectors/asymmetric/Ed25519/ed25519-pkcs8-enc.pem +${PYSITELIB}/cryptography_vectors/asymmetric/Ed25519/ed25519-pkcs8.der +${PYSITELIB}/cryptography_vectors/asymmetric/Ed25519/ed25519-pkcs8.pem +${PYSITELIB}/cryptography_vectors/asymmetric/Ed25519/ed25519-pub.der +${PYSITELIB}/cryptography_vectors/asymmetric/Ed25519/ed25519-pub.pem ${PYSITELIB}/cryptography_vectors/asymmetric/Ed25519/sign.input +${PYSITELIB}/cryptography_vectors/asymmetric/Ed448/ed448-pkcs8-enc.der +${PYSITELIB}/cryptography_vectors/asymmetric/Ed448/ed448-pkcs8-enc.pem +${PYSITELIB}/cryptography_vectors/asymmetric/Ed448/ed448-pkcs8.der +${PYSITELIB}/cryptography_vectors/asymmetric/Ed448/ed448-pkcs8.pem +${PYSITELIB}/cryptography_vectors/asymmetric/Ed448/ed448-pub.der +${PYSITELIB}/cryptography_vectors/asymmetric/Ed448/ed448-pub.pem ${PYSITELIB}/cryptography_vectors/asymmetric/Ed448/rfc8032.txt ${PYSITELIB}/cryptography_vectors/asymmetric/PEM_Serialization/README.txt ${PYSITELIB}/cryptography_vectors/asymmetric/PEM_Serialization/dsa_private_key.pem diff --git a/security/py-cryptography_vectors/distinfo b/security/py-cryptography_vectors/distinfo index 5836c5446c3..0a15d142c0b 100644 --- a/security/py-cryptography_vectors/distinfo +++ b/security/py-cryptography_vectors/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.19 2019/01/23 12:21:04 adam Exp $ +$NetBSD: distinfo,v 1.20 2019/02/28 09:06:08 adam Exp $ -SHA1 (cryptography_vectors-2.5.tar.gz) = 5c72aa89b38fac689f7f6482e3efdd4cf3779ea2 -RMD160 (cryptography_vectors-2.5.tar.gz) = 6ce8637cd87d38acacab9526045daa4cc9a1d871 -SHA512 (cryptography_vectors-2.5.tar.gz) = cdd066c597731eb782a3288ddd83ab97b13097360399e8368c7c7c8ba16ff3e6269405885c2ad81aeb0f79d8ff84395aa00639b3453576ac0b57d37d8d36dbf7 -Size (cryptography_vectors-2.5.tar.gz) = 35094063 bytes +SHA1 (cryptography_vectors-2.6.1.tar.gz) = 5f614d0f3208f23de8ba3cf768b4b4245695bc15 +RMD160 (cryptography_vectors-2.6.1.tar.gz) = 0c6691f98e018b726b73c42caba046f22f1317ed +SHA512 (cryptography_vectors-2.6.1.tar.gz) = 44d318d5f983955f42791cf182dd80070a87c3c05f7353e204a520588243041fec97367c6fb6d9febcdab0ce7bcf1d135a8e6b44a7387b599752b7c87fc81d9a +Size (cryptography_vectors-2.6.1.tar.gz) = 35097785 bytes |