summaryrefslogtreecommitdiff
path: root/security/py-cryptography
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2019-02-28 09:06:08 +0000
committeradam <adam@pkgsrc.org>2019-02-28 09:06:08 +0000
commite12e071f010490982ff6bce87c4e3eec84058ae9 (patch)
tree62fb55bacef7c8dc53aec8204dda7701365d4330 /security/py-cryptography
parent59f0097f7e1a699298484597d494ff71588f345a (diff)
downloadpkgsrc-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/py-cryptography')
-rw-r--r--security/py-cryptography/Makefile4
-rw-r--r--security/py-cryptography/PLIST14
-rw-r--r--security/py-cryptography/distinfo10
3 files changed, 20 insertions, 8 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