[Python-modules-commits] [python-cryptography] branch upstream updated (5581622 -> 4005c5b)

Tristan Seligmann mithrandi at moszumanska.debian.org
Tue Jun 20 19:32:45 UTC 2017


This is an automated email from the git hooks/post-receive script.

mithrandi pushed a change to branch upstream
in repository python-cryptography.

      from  5581622   Import python-cryptography_1.7.1.orig.tar.gz
       new  4005c5b   Import python-cryptography_1.9.orig.tar.gz

The 1 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                                        |   1 +
 CHANGELOG.rst                                      | 127 +++-
 PKG-INFO                                           |  13 +-
 README.rst                                         |  10 +-
 docs/api-stability.rst                             |   4 +
 docs/community.rst                                 |   3 +-
 docs/conf.py                                       |   7 +-
 docs/cryptography-docs.py                          |  21 +-
 docs/development/c-bindings.rst                    |  11 +-
 docs/development/getting-started.rst               |  26 +-
 docs/development/submitting-patches.rst            |   2 +-
 docs/development/test-vectors.rst                  |  41 +-
 docs/doing-a-release.rst                           |  20 +-
 docs/faq.rst                                       |  63 +-
 docs/fernet.rst                                    |  12 +-
 docs/hazmat/backends/commoncrypto.rst              |  30 -
 docs/hazmat/backends/index.rst                     |  10 +-
 docs/hazmat/backends/interfaces.rst                |  23 +-
 docs/hazmat/backends/multibackend.rst              |  45 --
 docs/hazmat/backends/openssl.rst                   |  18 +-
 docs/hazmat/bindings/commoncrypto.rst              |  30 -
 docs/hazmat/bindings/index.rst                     |   1 -
 docs/hazmat/bindings/openssl.rst                   |   2 +-
 docs/hazmat/primitives/asymmetric/dh.rst           |  97 ++-
 docs/hazmat/primitives/asymmetric/ec.rst           |  65 ++-
 docs/hazmat/primitives/asymmetric/index.rst        |   3 -
 .../hazmat/primitives/asymmetric/serialization.rst |  11 +-
 docs/hazmat/primitives/cryptographic-hashes.rst    |  43 +-
 docs/hazmat/primitives/index.rst                   |  11 +-
 docs/hazmat/primitives/interfaces.rst              |  80 ---
 .../hazmat/primitives/key-derivation-functions.rst |  11 +-
 docs/hazmat/primitives/mac/cmac.rst                |   4 +-
 docs/hazmat/primitives/mac/hmac.rst                |   4 +-
 docs/hazmat/primitives/mac/index.rst               |  32 +
 docs/hazmat/primitives/padding.rst                 |   4 +-
 docs/hazmat/primitives/symmetric-encryption.rst    | 105 +++-
 docs/index.rst                                     |  70 +--
 docs/installation.rst                              |  80 +--
 docs/security.rst                                  |   6 +-
 docs/spelling_wordlist.txt                         |   2 +
 docs/x509/certificate-transparency.rst             |  79 +++
 docs/x509/index.rst                                |   1 +
 docs/x509/reference.rst                            |  35 +-
 docs/x509/tutorial.rst                             |  21 +-
 setup.cfg                                          |   1 -
 setup.py                                           |  29 +-
 src/_cffi_src/build_commoncrypto.py                |  33 --
 src/_cffi_src/build_openssl.py                     |  27 +-
 src/_cffi_src/commoncrypto/__init__.py             |   5 -
 src/_cffi_src/commoncrypto/cf.py                   | 113 ----
 src/_cffi_src/commoncrypto/common_cryptor.py       |  99 ----
 src/_cffi_src/commoncrypto/common_digest.py        |  58 --
 src/_cffi_src/commoncrypto/common_hmac.py          |  37 --
 .../commoncrypto/common_key_derivation.py          |  39 --
 .../commoncrypto/common_symmetric_key_wrap.py      |  35 --
 src/_cffi_src/commoncrypto/seccertificate.py       |  23 -
 src/_cffi_src/commoncrypto/secimport.py            |  86 ---
 src/_cffi_src/commoncrypto/secitem.py              |  27 -
 src/_cffi_src/commoncrypto/seckey.py               |  24 -
 src/_cffi_src/commoncrypto/seckeychain.py          |  25 -
 src/_cffi_src/commoncrypto/secpolicy.py            |  23 -
 src/_cffi_src/commoncrypto/sectransform.py         |  68 ---
 src/_cffi_src/commoncrypto/sectrust.py             |  39 --
 src/_cffi_src/commoncrypto/secure_transport.py     | 308 ----------
 src/_cffi_src/openssl/aes.py                       |  15 -
 src/_cffi_src/openssl/asn1.py                      |   8 +-
 src/_cffi_src/openssl/bio.py                       |   2 +-
 src/_cffi_src/openssl/callbacks.py                 |  69 +--
 src/_cffi_src/openssl/cmac.py                      |  14 +-
 src/_cffi_src/openssl/crypto.py                    |  48 +-
 src/_cffi_src/openssl/cryptography.py              |  51 +-
 src/_cffi_src/openssl/ct.py                        |  96 +++
 src/_cffi_src/openssl/dh.py                        | 135 ++++-
 src/_cffi_src/openssl/dsa.py                       |   2 +-
 src/_cffi_src/openssl/ec.py                        | 169 +-----
 src/_cffi_src/openssl/ecdh.py                      |  11 -
 src/_cffi_src/openssl/ecdsa.py                     |  32 -
 src/_cffi_src/openssl/engine.py                    |   2 +-
 src/_cffi_src/openssl/err.py                       |   8 +-
 src/_cffi_src/openssl/evp.py                       |  25 +-
 src/_cffi_src/openssl/hmac.py                      |   4 +-
 src/_cffi_src/openssl/nid.py                       |   9 +
 src/_cffi_src/openssl/osrandom_engine.py           |   2 -
 src/_cffi_src/openssl/pem.py                       |   9 +-
 src/_cffi_src/openssl/rand.py                      |   2 +-
 src/_cffi_src/openssl/rsa.py                       |   9 +-
 src/_cffi_src/openssl/src/osrandom_engine.c        |   8 +-
 src/_cffi_src/openssl/src/osrandom_engine.h        |   8 +-
 src/_cffi_src/openssl/ssl.py                       | 175 ++----
 src/_cffi_src/openssl/x509.py                      |  20 +-
 src/_cffi_src/openssl/x509_vfy.py                  |  51 +-
 src/_cffi_src/openssl/x509name.py                  |   2 +-
 src/_cffi_src/openssl/x509v3.py                    |   8 +
 src/_cffi_src/utils.py                             |   2 +-
 src/cryptography.egg-info/PKG-INFO                 |  13 +-
 src/cryptography.egg-info/SOURCES.txt              |  41 +-
 src/cryptography.egg-info/entry_points.txt         |   1 -
 src/cryptography.egg-info/requires.txt             |  12 +-
 src/cryptography/__about__.py                      |   4 +-
 src/cryptography/__init__.py                       |   6 +
 src/cryptography/hazmat/backends/__init__.py       |  59 +-
 .../hazmat/backends/commoncrypto/__init__.py       |  10 -
 .../hazmat/backends/commoncrypto/backend.py        | 250 --------
 .../hazmat/backends/commoncrypto/ciphers.py        | 193 ------
 .../hazmat/backends/commoncrypto/hashes.py         |  55 --
 .../hazmat/backends/commoncrypto/hmac.py           |  59 --
 src/cryptography/hazmat/backends/interfaces.py     |   9 +-
 src/cryptography/hazmat/backends/multibackend.py   | 505 ----------------
 .../hazmat/backends/openssl/backend.py             | 416 +++++--------
 .../hazmat/backends/openssl/ciphers.py             | 102 ++--
 src/cryptography/hazmat/backends/openssl/cmac.py   |   4 +-
 .../hazmat/backends/openssl/decode_asn1.py         |  43 +-
 src/cryptography/hazmat/backends/openssl/dh.py     | 126 +++-
 src/cryptography/hazmat/backends/openssl/dsa.py    |  28 +-
 src/cryptography/hazmat/backends/openssl/ec.py     |  56 +-
 .../hazmat/backends/openssl/encode_asn1.py         |   7 +-
 src/cryptography/hazmat/backends/openssl/hmac.py   |   4 +-
 src/cryptography/hazmat/backends/openssl/rsa.py    |  47 +-
 src/cryptography/hazmat/backends/openssl/utils.py  |  21 -
 src/cryptography/hazmat/backends/openssl/x509.py   |   2 +-
 .../hazmat/bindings/commoncrypto/__init__.py       |   5 -
 .../hazmat/bindings/commoncrypto/binding.py        |  15 -
 .../hazmat/bindings/openssl/_conditional.py        | 210 +------
 .../hazmat/bindings/openssl/binding.py             |  67 +--
 .../hazmat/primitives/asymmetric/dh.py             |  25 +-
 .../hazmat/primitives/asymmetric/ec.py             |  14 +-
 .../hazmat/primitives/asymmetric/rsa.py            |   6 +-
 .../hazmat/primitives/asymmetric/utils.py          |  35 +-
 .../hazmat/primitives/ciphers/__init__.py          |   5 +-
 src/cryptography/hazmat/primitives/ciphers/base.py |  46 +-
 .../hazmat/primitives/ciphers/modes.py             |  22 +-
 src/cryptography/hazmat/primitives/cmac.py         |   4 +-
 src/cryptography/hazmat/primitives/hashes.py       |  16 +
 src/cryptography/hazmat/primitives/hmac.py         |   4 +-
 .../cryptography/hazmat/primitives/interfaces.py   |  10 +-
 src/cryptography/hazmat/primitives/kdf/scrypt.py   |   7 +
 .../primitives/{interfaces/__init__.py => mac.py}  |   0
 src/cryptography/utils.py                          |  33 +-
 src/cryptography/x509/__init__.py                  |   9 +
 src/cryptography/x509/certificate_transparency.py  |  46 ++
 src/cryptography/x509/extensions.py                |  40 +-
 src/cryptography/x509/oid.py                       |   3 +
 tests/conftest.py                                  |  19 +-
 tests/hazmat/backends/test_backendinit.py          |  17 -
 tests/hazmat/backends/test_commoncrypto.py         |  54 --
 tests/hazmat/backends/test_multibackend.py         | 648 ---------------------
 tests/hazmat/backends/test_openssl.py              | 309 ++++------
 tests/hazmat/backends/test_openssl_memleak.py      | 191 ++++++
 tests/hazmat/bindings/test_commoncrypto.py         |  26 -
 tests/hazmat/bindings/test_openssl.py              |  47 +-
 tests/hazmat/primitives/test_aes.py                | 102 ++++
 tests/hazmat/primitives/test_asym_utils.py         |   3 +-
 tests/hazmat/primitives/test_block.py              |  13 +
 tests/hazmat/primitives/test_cast5.py              |  17 -
 tests/hazmat/primitives/test_ciphers.py            | 128 +++-
 tests/hazmat/primitives/test_cmac.py               |  15 +-
 tests/hazmat/primitives/test_dh.py                 | 404 ++++++++++++-
 tests/hazmat/primitives/test_ec.py                 |  11 +-
 tests/hazmat/primitives/test_hashes.py             |  11 -
 tests/hazmat/primitives/test_hmac.py               |  11 -
 .../primitives/test_mac.py}                        |   8 +-
 tests/hazmat/primitives/test_scrypt.py             |  23 +-
 tests/hazmat/primitives/test_serialization.py      |  43 +-
 tests/hazmat/primitives/utils.py                   |   7 +-
 tests/test_utils.py                                |  45 +-
 tests/test_x509.py                                 |  68 +--
 tests/test_x509_crlbuilder.py                      |   4 -
 tests/test_x509_ext.py                             |  40 +-
 tests/utils.py                                     |  17 -
 169 files changed, 3033 insertions(+), 5322 deletions(-)
 delete mode 100644 docs/hazmat/backends/commoncrypto.rst
 delete mode 100644 docs/hazmat/backends/multibackend.rst
 delete mode 100644 docs/hazmat/bindings/commoncrypto.rst
 delete mode 100644 docs/hazmat/primitives/interfaces.rst
 create mode 100644 docs/x509/certificate-transparency.rst
 delete mode 100644 src/_cffi_src/build_commoncrypto.py
 delete mode 100644 src/_cffi_src/commoncrypto/__init__.py
 delete mode 100644 src/_cffi_src/commoncrypto/cf.py
 delete mode 100644 src/_cffi_src/commoncrypto/common_cryptor.py
 delete mode 100644 src/_cffi_src/commoncrypto/common_digest.py
 delete mode 100644 src/_cffi_src/commoncrypto/common_hmac.py
 delete mode 100644 src/_cffi_src/commoncrypto/common_key_derivation.py
 delete mode 100644 src/_cffi_src/commoncrypto/common_symmetric_key_wrap.py
 delete mode 100644 src/_cffi_src/commoncrypto/seccertificate.py
 delete mode 100644 src/_cffi_src/commoncrypto/secimport.py
 delete mode 100644 src/_cffi_src/commoncrypto/secitem.py
 delete mode 100644 src/_cffi_src/commoncrypto/seckey.py
 delete mode 100644 src/_cffi_src/commoncrypto/seckeychain.py
 delete mode 100644 src/_cffi_src/commoncrypto/secpolicy.py
 delete mode 100644 src/_cffi_src/commoncrypto/sectransform.py
 delete mode 100644 src/_cffi_src/commoncrypto/sectrust.py
 delete mode 100644 src/_cffi_src/commoncrypto/secure_transport.py
 create mode 100644 src/_cffi_src/openssl/ct.py
 delete mode 100644 src/cryptography/hazmat/backends/commoncrypto/__init__.py
 delete mode 100644 src/cryptography/hazmat/backends/commoncrypto/backend.py
 delete mode 100644 src/cryptography/hazmat/backends/commoncrypto/ciphers.py
 delete mode 100644 src/cryptography/hazmat/backends/commoncrypto/hashes.py
 delete mode 100644 src/cryptography/hazmat/backends/commoncrypto/hmac.py
 delete mode 100644 src/cryptography/hazmat/backends/multibackend.py
 delete mode 100644 src/cryptography/hazmat/bindings/commoncrypto/__init__.py
 delete mode 100644 src/cryptography/hazmat/bindings/commoncrypto/binding.py
 copy tests/test_cryptography_utils.py => src/cryptography/hazmat/primitives/interfaces.py (51%)
 rename src/cryptography/hazmat/primitives/{interfaces/__init__.py => mac.py} (100%)
 create mode 100644 src/cryptography/x509/certificate_transparency.py
 delete mode 100644 tests/hazmat/backends/test_backendinit.py
 delete mode 100644 tests/hazmat/backends/test_commoncrypto.py
 delete mode 100644 tests/hazmat/backends/test_multibackend.py
 create mode 100644 tests/hazmat/backends/test_openssl_memleak.py
 delete mode 100644 tests/hazmat/bindings/test_commoncrypto.py
 copy tests/{test_cryptography_utils.py => hazmat/primitives/test_mac.py} (59%)

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