From ab394c8b178901c2b897ababc831d347adab5e06 Mon Sep 17 00:00:00 2001 From: wiz Date: Tue, 29 Jul 2014 11:51:36 +0000 Subject: Update to 0.5.2: 0.5.2 - 2014-07-09 ~~~~~~~~~~~~~~~~~~ * Add :class:`~cryptography.hazmat.backends.interfaces.TraditionalOpenSSLSerializationBackend` support to :doc:`/hazmat/backends/multibackend`. * Fix compilation error on OS X 10.8 (Mountain Lion). 0.5.1 - 2014-07-07 ~~~~~~~~~~~~~~~~~~ * Add :class:`~cryptography.hazmat.backends.interfaces.PKCS8SerializationBackend` support to :doc:`/hazmat/backends/multibackend`. 0.5 - 2014-07-07 ~~~~~~~~~~~~~~~~ * **BACKWARDS INCOMPATIBLE:** :class:`~cryptography.hazmat.primitives.ciphers.modes.GCM` no longer allows truncation of tags by default. Previous versions of ``cryptography`` allowed tags to be truncated by default, applications wishing to preserve this behavior (not recommended) can pass the ``min_tag_length`` argument. * Windows builds now statically link OpenSSL by default. When installing a wheel on Windows you no longer need to install OpenSSL separately. Windows users can switch between static and dynamic linking with an environment variable. See :doc:`/installation` for more details. * Added :class:`~cryptography.hazmat.primitives.kdf.hkdf.HKDFExpand`. * Added :class:`~cryptography.hazmat.primitives.ciphers.modes.CFB8` support for :class:`~cryptography.hazmat.primitives.ciphers.algorithms.AES` and :class:`~cryptography.hazmat.primitives.ciphers.algorithms.TripleDES` on :doc:`/hazmat/backends/commoncrypto` and :doc:`/hazmat/backends/openssl`. * Added ``AES`` :class:`~cryptography.hazmat.primitives.ciphers.modes.CTR` support to the OpenSSL backend when linked against 0.9.8. * Added :class:`~cryptography.hazmat.backends.interfaces.PKCS8SerializationBackend` and :class:`~cryptography.hazmat.backends.interfaces.TraditionalOpenSSLSerializationBackend` support to the :doc:`/hazmat/backends/openssl`. * Added :doc:`/hazmat/primitives/asymmetric/ec` and :class:`~cryptography.hazmat.backends.interfaces.EllipticCurveBackend`. * Added :class:`~cryptography.hazmat.primitives.ciphers.modes.ECB` support for :class:`~cryptography.hazmat.primitives.ciphers.algorithms.TripleDES` on :doc:`/hazmat/backends/commoncrypto` and :doc:`/hazmat/backends/openssl`. * Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey` in favor of backend specific providers of the :class:`~cryptography.hazmat.primitives.interfaces.RSAPrivateKey` interface. * Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey` in favor of backend specific providers of the :class:`~cryptography.hazmat.primitives.interfaces.RSAPublicKey` interface. * Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey` in favor of backend specific providers of the :class:`~cryptography.hazmat.primitives.interfaces.DSAPrivateKey` interface. * Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey` in favor of backend specific providers of the :class:`~cryptography.hazmat.primitives.interfaces.DSAPublicKey` interface. * Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAParameters` in favor of backend specific providers of the :class:`~cryptography.hazmat.primitives.interfaces.DSAParameters` interface. * Deprecated ``encrypt_rsa``, ``decrypt_rsa``, ``create_rsa_signature_ctx`` and ``create_rsa_verification_ctx`` on :class:`~cryptography.hazmat.backends.interfaces.RSABackend`. * Deprecated ``create_dsa_signature_ctx`` and ``create_dsa_verification_ctx`` on :class:`~cryptography.hazmat.backends.interfaces.DSABackend`. --- security/py-cryptography/Makefile | 4 +-- security/py-cryptography/PLIST | 59 ++++++++++++++++++++++++++++++++++++++- security/py-cryptography/distinfo | 8 +++--- 3 files changed, 64 insertions(+), 7 deletions(-) (limited to 'security/py-cryptography') diff --git a/security/py-cryptography/Makefile b/security/py-cryptography/Makefile index 677352293fc..175b0002d02 100644 --- a/security/py-cryptography/Makefile +++ b/security/py-cryptography/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.7 2014/05/06 10:30:54 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2014/07/29 11:51:36 wiz Exp $ -DISTNAME= cryptography-0.4 +DISTNAME= cryptography-0.5.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= security python MASTER_SITES= https://pypi.python.org/packages/source/c/cryptography/ diff --git a/security/py-cryptography/PLIST b/security/py-cryptography/PLIST index d60258f7f98..7a15bbbfc3c 100644 --- a/security/py-cryptography/PLIST +++ b/security/py-cryptography/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2014/05/06 10:30:54 wiz Exp $ +@comment $NetBSD: PLIST,v 1.4 2014/07/29 11:51:36 wiz Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -32,6 +32,15 @@ ${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/__init__.pyo ${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/backend.py ${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/backend.pyc ${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/backend.pyo +${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/ciphers.py +${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/ciphers.pyc +${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/ciphers.pyo +${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/hashes.py +${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/hashes.pyc +${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/hashes.pyo +${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/hmac.py +${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/hmac.pyc +${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/hmac.pyo ${PYSITELIB}/cryptography/hazmat/backends/interfaces.py ${PYSITELIB}/cryptography/hazmat/backends/interfaces.pyc ${PYSITELIB}/cryptography/hazmat/backends/interfaces.pyo @@ -44,6 +53,27 @@ ${PYSITELIB}/cryptography/hazmat/backends/openssl/__init__.pyo ${PYSITELIB}/cryptography/hazmat/backends/openssl/backend.py ${PYSITELIB}/cryptography/hazmat/backends/openssl/backend.pyc ${PYSITELIB}/cryptography/hazmat/backends/openssl/backend.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/ciphers.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/ciphers.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/ciphers.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/cmac.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/cmac.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/cmac.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/dsa.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/dsa.pyc +${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/hashes.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/hashes.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/hashes.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/hmac.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/hmac.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/hmac.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/rsa.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/rsa.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/rsa.pyo ${PYSITELIB}/cryptography/hazmat/bindings/__init__.py ${PYSITELIB}/cryptography/hazmat/bindings/__init__.pyc ${PYSITELIB}/cryptography/hazmat/bindings/__init__.pyo @@ -53,6 +83,9 @@ ${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/__init__.pyo ${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/binding.py ${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/binding.pyc ${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/binding.pyo +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/cf.py +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/cf.pyc +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/cf.pyo ${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/common_cryptor.py ${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/common_cryptor.pyc ${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/common_cryptor.pyo @@ -65,6 +98,21 @@ ${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/common_hmac.pyo ${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/common_key_derivation.py ${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/common_key_derivation.pyc ${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/common_key_derivation.pyo +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/secimport.py +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/secimport.pyc +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/secimport.pyo +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/secitem.py +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/secitem.pyc +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/secitem.pyo +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/seckey.py +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/seckey.pyc +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/seckey.pyo +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/seckeychain.py +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/seckeychain.pyc +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/seckeychain.pyo +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/sectransform.py +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/sectransform.pyc +${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/sectransform.pyo ${PYSITELIB}/cryptography/hazmat/bindings/openssl/__init__.py ${PYSITELIB}/cryptography/hazmat/bindings/openssl/__init__.pyc ${PYSITELIB}/cryptography/hazmat/bindings/openssl/__init__.pyo @@ -155,6 +203,9 @@ ${PYSITELIB}/cryptography/hazmat/bindings/openssl/ssl.pyo ${PYSITELIB}/cryptography/hazmat/bindings/openssl/x509.py ${PYSITELIB}/cryptography/hazmat/bindings/openssl/x509.pyc ${PYSITELIB}/cryptography/hazmat/bindings/openssl/x509.pyo +${PYSITELIB}/cryptography/hazmat/bindings/openssl/x509_vfy.py +${PYSITELIB}/cryptography/hazmat/bindings/openssl/x509_vfy.pyc +${PYSITELIB}/cryptography/hazmat/bindings/openssl/x509_vfy.pyo ${PYSITELIB}/cryptography/hazmat/bindings/openssl/x509name.py ${PYSITELIB}/cryptography/hazmat/bindings/openssl/x509name.pyc ${PYSITELIB}/cryptography/hazmat/bindings/openssl/x509name.pyo @@ -173,6 +224,9 @@ ${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/__init__.pyo ${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/dsa.py ${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/dsa.pyc ${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/padding.py ${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/padding.pyc ${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/padding.pyo @@ -218,6 +272,9 @@ ${PYSITELIB}/cryptography/hazmat/primitives/kdf/pbkdf2.pyo ${PYSITELIB}/cryptography/hazmat/primitives/padding.py ${PYSITELIB}/cryptography/hazmat/primitives/padding.pyc ${PYSITELIB}/cryptography/hazmat/primitives/padding.pyo +${PYSITELIB}/cryptography/hazmat/primitives/serialization.py +${PYSITELIB}/cryptography/hazmat/primitives/serialization.pyc +${PYSITELIB}/cryptography/hazmat/primitives/serialization.pyo ${PYSITELIB}/cryptography/hazmat/primitives/twofactor/__init__.py ${PYSITELIB}/cryptography/hazmat/primitives/twofactor/__init__.pyc ${PYSITELIB}/cryptography/hazmat/primitives/twofactor/__init__.pyo diff --git a/security/py-cryptography/distinfo b/security/py-cryptography/distinfo index fae3c51d4ff..98fcac05384 100644 --- a/security/py-cryptography/distinfo +++ b/security/py-cryptography/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.5 2014/05/06 10:30:54 wiz Exp $ +$NetBSD: distinfo,v 1.6 2014/07/29 11:51:36 wiz Exp $ -SHA1 (cryptography-0.4.tar.gz) = 10255ea8609436b74362d5873f5419aa0dd3d7b1 -RMD160 (cryptography-0.4.tar.gz) = b8d99e06b13c46e45852d98ceedfdcf0227c4f91 -Size (cryptography-0.4.tar.gz) = 260891 bytes +SHA1 (cryptography-0.5.2.tar.gz) = db82491315e1303eb6b9c30d2479e59da7705176 +RMD160 (cryptography-0.5.2.tar.gz) = bcaf6cdd8c3ea9371abd3b6ce53c81d102db4594 +Size (cryptography-0.5.2.tar.gz) = 319705 bytes SHA1 (patch-cryptography_hazmat_bindings_utils.py) = 4f4f53262efac03ea2b93c1338fed00aef4dc9cc SHA1 (patch-cryptography_hazmat_primitives_constant__time.py) = 2af2bed42ba2d8a3eca3898abf17715066664f82 SHA1 (patch-cryptography_hazmat_primitives_padding.py) = f840dbde2109dee89632bf4bc5b893521971d640 -- cgit v1.2.3