[Python-modules-commits] [python-cryptography] 01/03: Merge branch 'master' into jessie-backports
Tristan Seligmann
mithrandi at moszumanska.debian.org
Tue Jun 21 13:26:42 UTC 2016
This is an automated email from the git hooks/post-receive script.
mithrandi pushed a commit to branch jessie-backports
in repository python-cryptography.
commit f93c797987b044ef64efebaa9a558fbd86bbca14
Merge: 8a5718e b391436
Author: Tristan Seligmann <mithrandi at debian.org>
Date: Mon Jun 20 18:03:15 2016 +0200
Merge branch 'master' into jessie-backports
CHANGELOG.rst | 118 ++-
PKG-INFO | 2 +-
debian/.git-dpm | 14 +-
debian/changelog | 59 ++
debian/control | 44 +-
debian/py3dist-overrides | 2 +
debian/pydist-overrides | 4 +
debian/python-cryptography-doc.docs | 3 +-
debian/rules | 32 +-
debian/tests/control | 21 +-
docs/conf.py | 106 +--
docs/development/custom-vectors/arc4.rst | 30 +
.../custom-vectors/arc4/generate_arc4.py | 98 +++
.../development/custom-vectors/arc4/verify_arc4.go | 111 +++
.../custom-vectors/secp256k1/verify_secp256k1.py | 4 +-
docs/development/submitting-patches.rst | 4 +-
docs/development/test-vectors.rst | 32 +-
docs/faq.rst | 30 +-
docs/hazmat/backends/interfaces.rst | 39 +-
docs/hazmat/bindings/openssl.rst | 2 +-
docs/hazmat/primitives/asymmetric/ec.rst | 4 +-
docs/hazmat/primitives/asymmetric/rsa.rst | 8 +-
.../hazmat/primitives/asymmetric/serialization.rst | 42 +-
docs/hazmat/primitives/constant-time.rst | 2 +-
docs/hazmat/primitives/padding.rst | 45 +
docs/hazmat/primitives/symmetric-encryption.rst | 5 +-
docs/installation.rst | 25 +-
docs/limitations.rst | 2 +-
docs/security.rst | 37 +-
docs/spelling_wordlist.txt | 2 +
docs/x509/reference.rst | 499 ++++++++++-
docs/x509/tutorial.rst | 72 +-
setup.py | 27 +-
src/_cffi_src/build_commoncrypto.py | 3 +
src/_cffi_src/build_constant_time.py | 5 +-
src/_cffi_src/build_openssl.py | 36 +-
src/_cffi_src/build_padding.py | 5 +-
src/_cffi_src/commoncrypto/cf.py | 10 +
.../conf.py => commoncrypto/seccertificate.py} | 7 +-
.../{openssl/conf.py => commoncrypto/secpolicy.py} | 7 +-
src/_cffi_src/commoncrypto/sectrust.py | 39 +
src/_cffi_src/hazmat_src/padding.c | 24 +
src/_cffi_src/hazmat_src/padding.h | 1 +
src/_cffi_src/openssl/aes.py | 11 +-
src/_cffi_src/openssl/asn1.py | 15 +-
src/_cffi_src/openssl/bignum.py | 2 +
src/_cffi_src/openssl/bio.py | 6 +-
src/_cffi_src/openssl/callbacks.py | 50 ++
src/_cffi_src/openssl/cms.py | 5 -
src/_cffi_src/openssl/crypto.py | 69 +-
src/_cffi_src/openssl/dh.py | 1 -
src/_cffi_src/openssl/dsa.py | 8 -
src/_cffi_src/openssl/ec.py | 51 +-
src/_cffi_src/openssl/ecdh.py | 14 -
src/_cffi_src/openssl/ecdsa.py | 21 +-
src/_cffi_src/openssl/engine.py | 35 +-
src/_cffi_src/openssl/err.py | 13 +-
src/_cffi_src/openssl/evp.py | 55 +-
src/_cffi_src/openssl/hmac.py | 31 +-
src/_cffi_src/openssl/ocsp.py | 67 ++
src/_cffi_src/openssl/pem.py | 1 +
src/_cffi_src/openssl/rand.py | 3 +-
src/_cffi_src/openssl/ssl.py | 164 +++-
src/_cffi_src/openssl/x509.py | 125 +++
src/_cffi_src/openssl/x509_vfy.py | 4 +
src/_cffi_src/openssl/x509name.py | 12 +-
src/_cffi_src/openssl/x509v3.py | 21 +
src/_cffi_src/utils.py | 27 +-
src/cryptography.egg-info/PKG-INFO | 2 +-
src/cryptography.egg-info/SOURCES.txt | 18 +-
src/cryptography.egg-info/requires.txt | 24 +-
src/cryptography/__about__.py | 4 +-
src/cryptography/__init__.py | 3 +-
src/cryptography/exceptions.py | 14 -
src/cryptography/fernet.py | 6 +-
src/cryptography/hazmat/__init__.py | 6 +
src/cryptography/hazmat/backends/__init__.py | 7 +-
src/cryptography/hazmat/backends/interfaces.py | 14 +
src/cryptography/hazmat/backends/multibackend.py | 25 +
.../hazmat/backends/openssl/backend.py | 955 ++++++---------------
.../backends/openssl/{x509.py => decode_asn1.py} | 468 ++++------
src/cryptography/hazmat/backends/openssl/ec.py | 5 +
.../hazmat/backends/openssl/encode_asn1.py | 592 +++++++++++++
src/cryptography/hazmat/backends/openssl/hashes.py | 13 +-
src/cryptography/hazmat/backends/openssl/hmac.py | 13 +-
src/cryptography/hazmat/backends/openssl/rsa.py | 9 +-
src/cryptography/hazmat/backends/openssl/x509.py | 836 ++++--------------
.../hazmat/bindings/openssl/_conditional.py | 47 +-
.../hazmat/bindings/openssl/binding.py | 78 +-
.../hazmat/primitives/ciphers/algorithms.py | 2 +-
src/cryptography/hazmat/primitives/ciphers/base.py | 2 +-
.../hazmat/primitives/ciphers/modes.py | 21 +
src/cryptography/hazmat/primitives/padding.py | 172 +++-
.../hazmat/primitives/serialization.py | 14 +-
src/cryptography/utils.py | 14 +-
src/cryptography/x509/__init__.py | 46 +-
src/cryptography/x509/base.py | 215 +++++
src/cryptography/x509/extensions.py | 300 ++++++-
src/cryptography/x509/general_name.py | 6 +
src/cryptography/x509/name.py | 7 +-
src/cryptography/x509/oid.py | 60 +-
tests/doubles.py | 43 +
tests/hazmat/backends/test_commoncrypto.py | 13 +-
tests/hazmat/backends/test_multibackend.py | 34 +-
tests/hazmat/backends/test_openssl.py | 204 +++--
tests/hazmat/bindings/test_openssl.py | 28 +-
tests/hazmat/primitives/fixtures_ec.py | 296 +++++++
tests/hazmat/primitives/fixtures_rsa.py | 72 ++
tests/hazmat/primitives/test_3des.py | 8 +-
tests/hazmat/primitives/test_aes.py | 12 +-
tests/hazmat/primitives/test_arc4.py | 3 +-
tests/hazmat/primitives/test_block.py | 50 +-
tests/hazmat/primitives/test_blowfish.py | 8 +-
tests/hazmat/primitives/test_camellia.py | 8 +-
tests/hazmat/primitives/test_cast5.py | 10 +-
tests/hazmat/primitives/test_dsa.py | 45 +-
tests/hazmat/primitives/test_ec.py | 39 +-
tests/hazmat/primitives/test_hashes.py | 11 +-
tests/hazmat/primitives/test_hmac.py | 11 +-
tests/hazmat/primitives/test_idea.py | 8 +-
tests/hazmat/primitives/test_keywrap.py | 10 +-
tests/hazmat/primitives/test_padding.py | 92 ++
tests/hazmat/primitives/test_pbkdf2hmac.py | 13 +-
tests/hazmat/primitives/test_rsa.py | 140 ++-
tests/hazmat/primitives/test_seed.py | 8 +-
tests/hazmat/primitives/test_x963_vectors.py | 11 +-
tests/hypothesis/__init__.py | 4 +
tests/hypothesis/test_padding.py | 32 +
tests/test_fernet.py | 13 +-
tests/test_warnings.py | 41 +
tests/test_x509.py | 856 +++++++++++++++---
tests/test_x509_crlbuilder.py | 449 ++++++++++
tests/test_x509_ext.py | 523 ++++++++++-
tests/test_x509_revokedcertbuilder.py | 160 ++++
134 files changed, 7115 insertions(+), 2611 deletions(-)
diff --cc debian/changelog
index 811fb90,7349fbd..3580f59
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,9 -1,62 +1,68 @@@
+ python-cryptography (1.3.4-1) unstable; urgency=medium
+
+ * New upstream release.
+ * Remove some workarounds from rules that should no longer be necessary.
+ * Fix cffi build-dependency version (closes: #826204).
+ * Update py{,3}dist-overrides to get correct version bounds on
+ everything (closes: #821030).
+
+ -- Tristan Seligmann <mithrandi at debian.org> Fri, 03 Jun 2016 15:20:10 +0200
+
+ python-cryptography (1.3.1-2) unstable; urgency=medium
+
+ * Actually build and ship the Sphinx documentation (closes: #823375).
+ - The "nodoc" build profile is now supported.
+ * Bump Standards-Version to 3.9.8 (no changes).
+
+ -- Tristan Seligmann <mithrandi at debian.org> Wed, 04 May 2016 04:50:24 +0200
+
+ python-cryptography (1.3.1-1) unstable; urgency=medium
+
+ * New upstream release.
+
+ -- Tristan Seligmann <mithrandi at debian.org> Wed, 06 Apr 2016 22:49:34 +0200
+
+ python-cryptography (1.2.3-1) unstable; urgency=medium
+
+ * New upstream release.
+
+ -- Tristan Seligmann <mithrandi at debian.org> Sat, 05 Mar 2016 05:40:58 +0200
+
+ python-cryptography (1.2.2-3) unstable; urgency=medium
+
+ * Add autopkgtest and support "nocheck" profile.
+ * Bump Standards-Version to 3.9.7 (no changes).
+ * Turn on "bindnow" hardening option.
+
+ -- Tristan Seligmann <mithrandi at debian.org> Mon, 22 Feb 2016 02:29:44 +0200
+
+ python-cryptography (1.2.2-2) unstable; urgency=medium
+
+ * Import a0bef9dfde0e94bd1a01db1b4fa51632ac842ee7 from upstream: fixes
+ memory corruption in test suite (probably only affects 32-bit
+ architectures).
+
+ -- Tristan Seligmann <mithrandi at debian.org> Mon, 08 Feb 2016 20:44:24 +0200
+
+ python-cryptography (1.2.2-1) unstable; urgency=medium
+
+ * New upstream version.
+ * Switch to https in Vcs-Git.
+
+ -- Tristan Seligmann <mithrandi at debian.org> Thu, 04 Feb 2016 07:28:12 +0200
+
+ python-cryptography (1.2.1-1) unstable; urgency=medium
+
+ * New upstream version.
+
+ -- Tristan Seligmann <mithrandi at debian.org> Sat, 23 Jan 2016 04:19:44 +0200
+
+python-cryptography (1.1.1-1~bpo8+1) jessie-backports; urgency=medium
+
+ * Rebuild for jessie-backports.
+
+ -- Tristan Seligmann <mithrandi at debian.org> Mon, 18 Jan 2016 21:05:27 +0200
+
python-cryptography (1.1.1-1) unstable; urgency=medium
* New upstream release.
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-cryptography.git
More information about the Python-modules-commits
mailing list