[Python-modules-commits] [python-cryptography] branch jessie-backports updated (8a5718e -> 1c429a4)

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 change to branch jessie-backports
in repository python-cryptography.

      from  8a5718e   Rebuild for jessie-backports.
      adds  61b9dec   Import python-cryptography_1.2.1.orig.tar.gz
      adds  af76695   record new upstream branch created by importing python-cryptography_1.2.1.orig.tar.gz and merge it
      adds  f677f53   New upstream version.
      adds  2d7ac6f   Import python-cryptography_1.2.2.orig.tar.gz
      adds  7eb2452   record new upstream branch created by importing python-cryptography_1.2.2.orig.tar.gz and merge it
      adds  68c124e   New upstream version.
      adds  ff21b50   Switch to https in Vcs-Git.
      adds  e441791   Actually allocate a buffer that is the correct size.
      adds  4e613cc   merge patched into master
      adds  2a02e7a   Import a0bef9dfde0e94bd1a01db1b4fa51632ac842ee7 from upstream: fixes memory corruption in test suite (probably only affects 32-bit architectures).
      adds  c63b051   Add autopkgtest and support "nocheck" profile.
      adds  1707584   * Bump Standards-Version to 3.9.7 (no changes). * Turn on "bindnow" hardening option.
      adds  dbb1fab   Update changelog for release.
      adds  5d8eb39   record new upstream branch created by importing python-cryptography_1.2.3.orig.tar.gz
      adds  b64d1e2   Import python-cryptography_1.2.3.orig.tar.gz
      adds  90ba808   Actually allocate a buffer that is the correct size.
      adds  b2418b8   merge patched into master
      adds  b87730a   New upstream release.
      adds  934d9cd   record new upstream branch created by importing python-cryptography_1.3.1.orig.tar.gz
      adds  703d5a4   Import python-cryptography_1.3.1.orig.tar.gz
      adds  07c201c   merge patched into master
      adds  4b39b4e   New upstream release.
      adds  73163d1   Actually build and ship the Sphinx documentation (closes: #823375).
      adds  97969f9   Bump Standards-Version to 3.9.8 (no changes).
      adds  6583b7f   Import python-cryptography_1.3.4.orig.tar.gz
      adds  4585efe   record new upstream branch created by importing python-cryptography_1.3.4.orig.tar.gz and merge it
      adds  eeb6574   New upstream release.
      adds  3a1f59a   Remove some workarounds from rules that should no longer be necessary.
      adds  f7c191b   Bump vectors dependencies.
      adds  b391436   Update py{,3}dist-overrides to get correct version bounds on everything (closes: #821030).
       new  f93c797   Merge branch 'master' into jessie-backports
       new  bcd01da   Rebuild for jessie-backports.
       new  1c429a4   Fix setuptools dependency.

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGELOG.rst                                      | 118 ++-
 PKG-INFO                                           |   2 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  65 ++
 debian/control                                     |  48 +-
 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, 7123 insertions(+), 2613 deletions(-)
 create mode 100644 docs/development/custom-vectors/arc4.rst
 create mode 100644 docs/development/custom-vectors/arc4/generate_arc4.py
 create mode 100644 docs/development/custom-vectors/arc4/verify_arc4.go
 copy src/_cffi_src/{openssl/conf.py => commoncrypto/seccertificate.py} (70%)
 rename src/_cffi_src/{openssl/conf.py => commoncrypto/secpolicy.py} (75%)
 create mode 100644 src/_cffi_src/commoncrypto/sectrust.py
 create mode 100644 src/_cffi_src/openssl/callbacks.py
 create mode 100644 src/_cffi_src/openssl/ocsp.py
 copy src/cryptography/hazmat/backends/openssl/{x509.py => decode_asn1.py} (67%)
 create mode 100644 src/cryptography/hazmat/backends/openssl/encode_asn1.py
 create mode 100644 tests/doubles.py
 create mode 100644 tests/hazmat/primitives/fixtures_ec.py
 create mode 100644 tests/hypothesis/test_padding.py
 create mode 100644 tests/test_x509_crlbuilder.py
 create mode 100644 tests/test_x509_revokedcertbuilder.py

-- 
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