[Python-modules-commits] [python-cryptography] branch master updated (b391436 -> e1987e3)

Tristan Seligmann mithrandi at moszumanska.debian.org
Thu Jun 23 17:29:57 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  b391436   Update py{,3}dist-overrides to get correct version bounds on everything (closes: #821030).
       new  b11e8dd   Import python-cryptography_1.4.orig.tar.gz
       new  269677f   record new upstream branch created by importing python-cryptography_1.4.orig.tar.gz and merge it
       new  129043e   New upstream release.
       new  e1987e3   Depend on a new enough dh-python (necessary to handle the python-cffi mapping correctly).

The 4 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                                      |  20 +-
 PKG-INFO                                           |   2 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   9 +
 debian/control                                     |  10 +-
 docs/development/c-bindings.rst                    |   2 +-
 docs/development/custom-vectors/rsa-oaep-sha2.rst  |  56 +++
 .../rsa-oaep-sha2/VerifyRSAOAEPSHA2.java           | 416 +++++++++++++++++++++
 .../rsa-oaep-sha2/generate_rsa_oaep_sha2.py        | 127 +++++++
 docs/development/getting-started.rst               |  34 +-
 docs/development/submitting-patches.rst            |   2 +-
 docs/development/test-vectors.rst                  |   5 +-
 docs/faq.rst                                       |  17 +-
 docs/hazmat/backends/openssl.rst                   |   2 +-
 docs/hazmat/bindings/commoncrypto.rst              |   2 +-
 docs/hazmat/bindings/openssl.rst                   |   2 +-
 docs/hazmat/primitives/asymmetric/ec.rst           |   3 +-
 docs/hazmat/primitives/asymmetric/rsa.rst          |  76 +++-
 .../hazmat/primitives/asymmetric/serialization.rst |  13 +
 docs/hazmat/primitives/cryptographic-hashes.rst    |   4 +-
 .../hazmat/primitives/key-derivation-functions.rst | 150 ++++++++
 docs/installation.rst                              |  11 +-
 docs/x509/reference.rst                            |  58 +--
 setup.py                                           |   4 +-
 src/_cffi_src/openssl/bio.py                       |  53 +--
 src/_cffi_src/openssl/crypto.py                    |  10 +-
 src/_cffi_src/openssl/dh.py                        |  15 +-
 src/_cffi_src/openssl/dsa.py                       |  73 ++++
 src/_cffi_src/openssl/engine.py                    |   2 +-
 src/_cffi_src/openssl/err.py                       |  82 ++--
 src/_cffi_src/openssl/evp.py                       |   4 +-
 src/_cffi_src/openssl/objects.py                   |   3 +-
 src/_cffi_src/openssl/pem.py                       |   2 +
 src/_cffi_src/openssl/rand.py                      |   4 +-
 src/_cffi_src/openssl/rsa.py                       | 128 +++++++
 src/_cffi_src/openssl/ssl.py                       |  38 ++
 src/cryptography.egg-info/PKG-INFO                 |   2 +-
 src/cryptography.egg-info/SOURCES.txt              |   6 +
 src/cryptography/__about__.py                      |   2 +-
 .../hazmat/backends/openssl/backend.py             | 170 +++++++--
 src/cryptography/hazmat/backends/openssl/dsa.py    | 135 +++++--
 src/cryptography/hazmat/backends/openssl/ec.py     |   1 +
 src/cryptography/hazmat/backends/openssl/rsa.py    | 119 ++++--
 src/cryptography/hazmat/backends/openssl/x509.py   |  10 +
 .../hazmat/bindings/openssl/_conditional.py        |  15 +-
 .../hazmat/bindings/openssl/binding.py             |  40 +-
 .../hazmat/primitives/asymmetric/dsa.py            |  13 +
 .../hazmat/primitives/asymmetric/ec.py             |   6 +
 .../hazmat/primitives/asymmetric/rsa.py            |  12 +
 .../hazmat/primitives/asymmetric/utils.py          |   6 +-
 src/cryptography/hazmat/primitives/kdf/kbkdf.py    | 148 ++++++++
 .../hazmat/primitives/serialization.py             |  43 ++-
 src/cryptography/utils.py                          |   7 +-
 src/cryptography/x509/__init__.py                  |   9 -
 src/cryptography/x509/base.py                      |   2 +-
 src/cryptography/x509/extensions.py                |  45 ++-
 src/cryptography/x509/oid.py                       |   8 -
 tests/conftest.py                                  |   5 +
 tests/hazmat/backends/test_openssl.py              |  89 ++++-
 tests/hazmat/bindings/test_openssl.py              |   8 +-
 tests/hazmat/primitives/test_dsa.py                |  38 ++
 tests/hazmat/primitives/test_ec.py                 |  52 +++
 tests/hazmat/primitives/test_kbkdf.py              | 151 ++++++++
 tests/hazmat/primitives/test_kbkdf_vectors.py      |  23 ++
 tests/hazmat/primitives/test_rsa.py                | 175 ++++++++-
 tests/hazmat/primitives/test_serialization.py      |  11 +
 tests/hazmat/primitives/utils.py                   |  54 +++
 tests/test_utils.py                                |  99 ++++-
 tests/test_x509.py                                 |  35 +-
 tests/utils.py                                     |  37 ++
 71 files changed, 2670 insertions(+), 361 deletions(-)
 create mode 100644 docs/development/custom-vectors/rsa-oaep-sha2.rst
 create mode 100644 docs/development/custom-vectors/rsa-oaep-sha2/VerifyRSAOAEPSHA2.java
 create mode 100644 docs/development/custom-vectors/rsa-oaep-sha2/generate_rsa_oaep_sha2.py
 create mode 100644 src/cryptography/hazmat/primitives/kdf/kbkdf.py
 create mode 100644 tests/hazmat/primitives/test_kbkdf.py
 create mode 100644 tests/hazmat/primitives/test_kbkdf_vectors.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