[Python-modules-commits] [python-cryptography] branch master	updated (41a55b1 -> 4c5f307)
    Tristan Seligmann 
    mithrandi at moszumanska.debian.org
       
    Thu Dec 15 04:22:12 UTC 2016
    
    
  
This is an automated email from the git hooks/post-receive script.
mithrandi pushed a change to branch master
in repository python-cryptography.
      from  41a55b1   New upstream release.   - Fixes a security issue where HKDF would generate a 0-length key when     asked for a short length key. Urgency medium, because no software in     Debian appears to be affected.
       new  5581622   Import python-cryptography_1.7.1.orig.tar.gz
       new  cbb60a2   record new upstream branch created by importing python-cryptography_1.7.1.orig.tar.gz and merge it
       new  4c5f307   New upstream release.
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:
 AUTHORS.rst                                        |   5 +
 CHANGELOG.rst                                      |  69 ++-
 LICENSE                                            |   4 +
 PKG-INFO                                           |  11 +-
 README.rst                                         |   9 +
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   6 +
 debian/control                                     |   8 +-
 .../custom-vectors/cast5/generate_cast5.py         |   1 +
 docs/development/custom-vectors/idea.rst           |   2 +-
 .../custom-vectors/idea/generate_idea.py           |   1 +
 .../rsa-oaep-sha2/generate_rsa_oaep_sha2.py        |   1 +
 .../custom-vectors/secp256k1/generate_secp256k1.py |   1 +
 docs/development/custom-vectors/seed.rst           |   2 +-
 .../custom-vectors/seed/generate_seed.py           |   1 +
 docs/development/getting-started.rst               |  18 +-
 docs/development/test-vectors.rst                  |  14 +-
 docs/faq.rst                                       |  17 +-
 docs/hazmat/backends/commoncrypto.rst              |   2 +-
 docs/hazmat/backends/interfaces.rst                |  56 +-
 docs/hazmat/backends/openssl.rst                   |  27 +
 docs/hazmat/bindings/commoncrypto.rst              |   2 +-
 docs/hazmat/bindings/openssl.rst                   |   2 +-
 docs/hazmat/primitives/asymmetric/dh.rst           | 163 ++++--
 docs/hazmat/primitives/asymmetric/dsa.rst          |  14 +-
 docs/hazmat/primitives/asymmetric/ec.rst           | 102 +++-
 docs/hazmat/primitives/asymmetric/rsa.rst          |  14 +-
 docs/hazmat/primitives/asymmetric/utils.rst        |  58 +++
 docs/hazmat/primitives/cryptographic-hashes.rst    |  34 ++
 .../hazmat/primitives/key-derivation-functions.rst | 121 ++++-
 docs/hazmat/primitives/padding.rst                 |   4 +-
 docs/hazmat/primitives/symmetric-encryption.rst    |   4 +-
 docs/installation.rst                              |  22 +-
 docs/random-numbers.rst                            |   2 +-
 docs/spelling_wordlist.txt                         |  11 +
 docs/x509/reference.rst                            | 157 +++++-
 docs/x509/tutorial.rst                             |   2 +
 setup.py                                           |   2 +-
 src/_cffi_src/build_openssl.py                     |   8 +-
 src/_cffi_src/hazmat_src/padding.c                 |  30 +-
 src/_cffi_src/openssl/bio.py                       |  11 +
 src/_cffi_src/openssl/callbacks.py                 |  73 ++-
 src/_cffi_src/openssl/crypto.py                    |   1 +
 src/_cffi_src/openssl/cryptography.py              |   4 +
 src/_cffi_src/openssl/dh.py                        |   1 +
 src/_cffi_src/openssl/ecdh.py                      |   9 +
 src/_cffi_src/openssl/err.py                       |  34 +-
 src/_cffi_src/openssl/evp.py                       |  15 +
 src/_cffi_src/openssl/nid.py                       |   3 +
 src/_cffi_src/openssl/objects.py                   |   9 +
 src/_cffi_src/openssl/osrandom_engine.py           |  29 ++
 src/_cffi_src/openssl/src/osrandom_engine.c        | 576 +++++++++++++++++++++
 src/_cffi_src/openssl/src/osrandom_engine.h        |  88 ++++
 src/_cffi_src/openssl/ssl.py                       |  13 +
 src/_cffi_src/openssl/x509_vfy.py                  |  32 ++
 src/_cffi_src/openssl/x509name.py                  |  10 +
 src/_cffi_src/openssl/x509v3.py                    |  10 +-
 src/cryptography.egg-info/PKG-INFO                 |  11 +-
 src/cryptography.egg-info/SOURCES.txt              |   8 +
 src/cryptography.egg-info/requires.txt             |   2 +-
 src/cryptography/__about__.py                      |   2 +-
 src/cryptography/exceptions.py                     |   1 +
 src/cryptography/hazmat/backends/__init__.py       |  32 +-
 src/cryptography/hazmat/backends/interfaces.py     |  35 +-
 src/cryptography/hazmat/backends/multibackend.py   | 100 +++-
 .../hazmat/backends/openssl/backend.py             | 260 +++++++++-
 .../hazmat/backends/openssl/ciphers.py             |  13 +-
 .../hazmat/backends/openssl/decode_asn1.py         |  24 +-
 src/cryptography/hazmat/backends/openssl/dh.py     | 182 +++++++
 src/cryptography/hazmat/backends/openssl/dsa.py    |  75 +--
 src/cryptography/hazmat/backends/openssl/ec.py     | 122 +++--
 .../hazmat/backends/openssl/encode_asn1.py         |  41 +-
 src/cryptography/hazmat/backends/openssl/hashes.py |   6 +-
 src/cryptography/hazmat/backends/openssl/rsa.py    | 423 +++++++--------
 src/cryptography/hazmat/backends/openssl/utils.py  |  20 +
 src/cryptography/hazmat/backends/openssl/x509.py   |  51 +-
 .../hazmat/bindings/openssl/_conditional.py        |  11 +-
 .../hazmat/bindings/openssl/binding.py             |  97 +---
 .../hazmat/primitives/asymmetric/dh.py             |  23 +
 .../hazmat/primitives/asymmetric/ec.py             |  13 +
 .../hazmat/primitives/asymmetric/utils.py          |  12 +
 src/cryptography/hazmat/primitives/hashes.py       |  42 ++
 .../hazmat/primitives/kdf/{pbkdf2.py => scrypt.py} |  43 +-
 src/cryptography/hazmat/primitives/padding.py      |   4 +-
 src/cryptography/utils.py                          |  25 +-
 src/cryptography/x509/__init__.py                  |   7 +-
 src/cryptography/x509/base.py                      |  23 +
 src/cryptography/x509/extensions.py                |  19 +-
 src/cryptography/x509/name.py                      |  63 ++-
 src/cryptography/x509/oid.py                       |  43 +-
 tests/hazmat/backends/test_backendinit.py          |  17 +
 tests/hazmat/backends/test_multibackend.py         |  94 +++-
 tests/hazmat/backends/test_openssl.py              |  32 +-
 tests/hazmat/bindings/test_openssl.py              |  73 +--
 tests/hazmat/primitives/test_asym_utils.py         |   9 +-
 tests/hazmat/primitives/test_dh.py                 | 207 +++++++-
 tests/hazmat/primitives/test_dsa.py                |  47 +-
 tests/hazmat/primitives/test_ec.py                 |  97 +++-
 tests/hazmat/primitives/test_hash_vectors.py       |  34 ++
 tests/hazmat/primitives/test_hashes.py             |  48 ++
 tests/hazmat/primitives/test_padding.py            |  16 +
 tests/hazmat/primitives/test_rsa.py                |  64 ++-
 tests/hazmat/primitives/test_scrypt.py             | 136 +++++
 tests/hazmat/primitives/test_x963_vectors.py       |   3 +-
 tests/hypothesis/test_padding.py                   |   4 +-
 .../test_cryptography_utils.py                     |   5 +-
 tests/test_interfaces.py                           |  28 +-
 tests/test_x509.py                                 | 365 +++++++++----
 tests/test_x509_ext.py                             |  41 +-
 109 files changed, 4235 insertions(+), 857 deletions(-)
 create mode 100644 src/_cffi_src/openssl/osrandom_engine.py
 create mode 100644 src/_cffi_src/openssl/src/osrandom_engine.c
 create mode 100644 src/_cffi_src/openssl/src/osrandom_engine.h
 create mode 100644 src/cryptography/hazmat/backends/openssl/dh.py
 copy src/cryptography/hazmat/primitives/kdf/{pbkdf2.py => scrypt.py} (59%)
 create mode 100644 tests/hazmat/backends/test_backendinit.py
 create mode 100644 tests/hazmat/primitives/test_scrypt.py
 copy src/cryptography/hazmat/backends/commoncrypto/__init__.py => tests/test_cryptography_utils.py (64%)
-- 
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