[Python-modules-commits] [python-cryptography] branch master updated (9ef890b -> aae370d)

Tristan Seligmann mithrandi at moszumanska.debian.org
Fri Aug 26 17:58:53 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  9ef890b   Remove unused test scripts.
       new  4346ed6   New upstream release.
       new  dd1166f   Bump vectors dependencies.
       new  6bd87d1   Version setuptools dependency.
       new  f92eaca   Import python-cryptography_1.5.orig.tar.gz
       new  b0725f2   record new upstream branch created by importing python-cryptography_1.5.orig.tar.gz and merge it
       new  63958bb   Version pytest dependency.
       new  5f62eb2   Add test dependency on python{,3}-tz.
       new  aae370d   Add bug number to changelog.

The 8 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                                        |   2 +
 CHANGELOG.rst                                      |  24 ++
 PKG-INFO                                           |   2 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   8 +
 debian/control                                     |  24 +-
 docs/development/submitting-patches.rst            |   5 +
 docs/doing-a-release.rst                           |   2 +
 docs/faq.rst                                       |  10 +-
 docs/hazmat/backends/interfaces.rst                | 195 ++++++-------
 docs/hazmat/backends/openssl.rst                   |   5 +-
 docs/hazmat/bindings/openssl.rst                   |   3 +-
 docs/hazmat/primitives/asymmetric/dh.rst           |   5 +-
 docs/hazmat/primitives/asymmetric/dsa.rst          | 138 +++++----
 docs/hazmat/primitives/asymmetric/ec.rst           |  81 ++++--
 docs/hazmat/primitives/asymmetric/rsa.rst          | 116 ++++----
 .../hazmat/primitives/asymmetric/serialization.rst |  32 ++-
 docs/hazmat/primitives/cryptographic-hashes.rst    |   4 +-
 .../hazmat/primitives/key-derivation-functions.rst |  64 ++---
 docs/hazmat/primitives/keywrap.rst                 |   4 +-
 docs/hazmat/primitives/mac/cmac.rst                |  14 +-
 docs/hazmat/primitives/mac/hmac.rst                |   8 +-
 docs/hazmat/primitives/padding.rst                 |  12 +-
 docs/hazmat/primitives/symmetric-encryption.rst    |  12 +-
 docs/hazmat/primitives/twofactor.rst               |  36 ++-
 docs/installation.rst                              |  12 +-
 docs/spelling_wordlist.txt                         |  23 +-
 docs/x509/reference.rst                            |   4 +-
 setup.py                                           |   3 +-
 src/_cffi_src/build_commoncrypto.py                |   1 +
 src/_cffi_src/build_openssl.py                     |  20 +-
 src/_cffi_src/commoncrypto/secure_transport.py     | 308 +++++++++++++++++++++
 src/_cffi_src/openssl/aes.py                       |  29 +-
 src/_cffi_src/openssl/asn1.py                      |  12 +-
 src/_cffi_src/openssl/bio.py                       |   7 +-
 src/_cffi_src/openssl/callbacks.py                 |   5 +-
 src/_cffi_src/openssl/cmac.py                      |   9 +-
 src/_cffi_src/openssl/cms.py                       |  12 +-
 .../{commoncrypto/secpolicy.py => openssl/conf.py} |   7 +-
 src/_cffi_src/openssl/crypto.py                    |  16 +-
 src/_cffi_src/openssl/cryptography.py              |  64 +++++
 src/_cffi_src/openssl/dh.py                        |  78 ++++++
 src/_cffi_src/openssl/dsa.py                       |  53 ++--
 src/_cffi_src/openssl/ec.py                        |   4 +-
 src/_cffi_src/openssl/err.py                       |  58 +---
 src/_cffi_src/openssl/evp.py                       | 122 +++-----
 src/_cffi_src/openssl/hmac.py                      |  69 +----
 src/_cffi_src/openssl/nid.py                       |  12 -
 src/_cffi_src/openssl/rand.py                      |   9 +-
 src/_cffi_src/openssl/rsa.py                       |  67 ++---
 src/_cffi_src/openssl/ssl.py                       | 128 ++-------
 src/_cffi_src/openssl/x509.py                      | 144 ++++------
 src/_cffi_src/openssl/x509_vfy.py                  |  62 +----
 src/_cffi_src/openssl/x509name.py                  |  32 ++-
 src/_cffi_src/openssl/x509v3.py                    |  29 +-
 src/_cffi_src/utils.py                             |   7 +-
 src/cryptography.egg-info/PKG-INFO                 |   2 +-
 src/cryptography.egg-info/SOURCES.txt              |   3 +
 src/cryptography.egg-info/requires.txt             |   3 +-
 src/cryptography/__about__.py                      |   2 +-
 .../hazmat/backends/commoncrypto/backend.py        |   7 +-
 .../hazmat/backends/openssl/backend.py             | 196 +++----------
 .../hazmat/backends/openssl/ciphers.py             |  14 +-
 .../hazmat/backends/openssl/decode_asn1.py         |  56 +---
 src/cryptography/hazmat/backends/openssl/dsa.py    |  58 +---
 src/cryptography/hazmat/backends/openssl/ec.py     |  10 +
 .../hazmat/backends/openssl/encode_asn1.py         |  15 +-
 src/cryptography/hazmat/backends/openssl/hmac.py   |  14 +-
 src/cryptography/hazmat/backends/openssl/rsa.py    | 182 +-----------
 src/cryptography/hazmat/backends/openssl/x509.py   |   8 +-
 .../hazmat/bindings/openssl/_conditional.py        | 115 --------
 .../hazmat/bindings/openssl/binding.py             |  16 +-
 .../hazmat/primitives/asymmetric/dsa.py            |  12 +
 .../hazmat/primitives/asymmetric/ec.py             |  12 +
 .../hazmat/primitives/asymmetric/padding.py        |  12 +
 .../hazmat/primitives/asymmetric/rsa.py            |   6 +-
 .../hazmat/primitives/twofactor/hotp.py            |   5 +-
 .../hazmat/primitives/twofactor/totp.py            |   5 +-
 src/cryptography/x509/base.py                      |  41 ++-
 src/cryptography/x509/extensions.py                |  72 ++---
 src/cryptography/x509/name.py                      |   4 +
 tests/hazmat/backends/test_openssl.py              |  67 ++---
 tests/hazmat/bindings/test_openssl.py              |  25 +-
 tests/hazmat/primitives/test_dsa.py                |  20 ++
 tests/hazmat/primitives/test_ec.py                 |  22 ++
 tests/hazmat/primitives/test_rsa.py                |   7 +-
 tests/hazmat/primitives/twofactor/test_hotp.py     |   4 +
 tests/hazmat/primitives/utils.py                   |   5 +
 tests/test_x509.py                                 | 119 +++++++-
 tests/test_x509_crlbuilder.py                      |  42 ++-
 tests/test_x509_ext.py                             | 152 +++++++++-
 tests/test_x509_revokedcertbuilder.py              |  49 +++-
 92 files changed, 1868 insertions(+), 1740 deletions(-)
 create mode 100644 src/_cffi_src/commoncrypto/secure_transport.py
 copy src/_cffi_src/{commoncrypto/secpolicy.py => openssl/conf.py} (74%)
 create mode 100644 src/_cffi_src/openssl/cryptography.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