[Python-modules-commits] [python-cryptography] branch upstream updated (aa238a0 -> dc547b5)

Tristan Seligmann mithrandi at moszumanska.debian.org
Fri Oct 30 06:55:45 UTC 2015


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

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

      from  aa238a0   Imported Upstream version 1.0.2
       new  dc547b5   Import python-cryptography_1.1.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                                      |  25 ++
 PKG-INFO                                           |   5 +-
 README.rst                                         |   2 +-
 docs/development/test-vectors.rst                  |  15 +-
 docs/doing-a-release.rst                           |  25 +-
 docs/fernet.rst                                    |  44 +-
 docs/hazmat/bindings/openssl.rst                   |   2 +-
 docs/hazmat/primitives/asymmetric/dh.rst           |   2 +-
 docs/hazmat/primitives/asymmetric/dsa.rst          |  10 +-
 docs/hazmat/primitives/asymmetric/ec.rst           |  96 ++++-
 docs/hazmat/primitives/asymmetric/rsa.rst          |  16 +-
 .../hazmat/primitives/asymmetric/serialization.rst |   6 +-
 docs/hazmat/primitives/index.rst                   |   1 +
 .../hazmat/primitives/key-derivation-functions.rst |  95 +++++
 docs/hazmat/primitives/keywrap.rst                 |  59 +++
 docs/hazmat/primitives/mac/index.rst               |   2 +-
 docs/installation.rst                              |  92 ++++-
 docs/security.rst                                  |   7 +-
 docs/spelling_wordlist.txt                         |   7 +-
 docs/x509/reference.rst                            | 225 +++++++++--
 docs/x509/tutorial.rst                             |  20 +-
 setup.py                                           |   7 +-
 src/_cffi_src/build_openssl.py                     |   4 +-
 src/_cffi_src/openssl/asn1.py                      |  19 +-
 src/_cffi_src/openssl/bignum.py                    |  19 +-
 src/_cffi_src/openssl/engine.py                    |   2 +
 src/_cffi_src/openssl/pkcs7.py                     |  30 ++
 src/_cffi_src/openssl/ssl.py                       |  17 +
 src/_cffi_src/openssl/x509v3.py                    |   2 +
 src/cryptography.egg-info/PKG-INFO                 |   5 +-
 src/cryptography.egg-info/SOURCES.txt              |  10 +-
 src/cryptography/__about__.py                      |   2 +-
 src/cryptography/exceptions.py                     |   1 +
 src/cryptography/hazmat/backends/interfaces.py     |   8 +-
 src/cryptography/hazmat/backends/multibackend.py   |  24 ++
 .../hazmat/backends/openssl/backend.py             | 203 +++++++++-
 src/cryptography/hazmat/backends/openssl/dsa.py    |   3 +
 src/cryptography/hazmat/backends/openssl/ec.py     |  28 ++
 src/cryptography/hazmat/backends/openssl/rsa.py    |   3 +
 src/cryptography/hazmat/backends/openssl/x509.py   | 328 ++++++++++-----
 .../hazmat/bindings/openssl/_conditional.py        |   6 +-
 .../hazmat/bindings/openssl/binding.py             |  27 +-
 .../hazmat/primitives/asymmetric/ec.py             |  42 ++
 src/cryptography/hazmat/primitives/kdf/x963kdf.py  |  70 ++++
 src/cryptography/hazmat/primitives/keywrap.py      |  85 ++++
 src/cryptography/utils.py                          |  21 +-
 src/cryptography/x509/__init__.py                  |   6 +-
 src/cryptography/x509/base.py                      |  14 +-
 src/cryptography/x509/extensions.py                |  20 +-
 src/cryptography/x509/name.py                      |   8 +
 src/cryptography/x509/oid.py                       |   6 +-
 tests/hazmat/backends/test_multibackend.py         |  31 +-
 tests/hazmat/backends/test_openssl.py              |   6 +
 tests/hazmat/bindings/test_openssl.py              |   4 +-
 tests/hazmat/primitives/test_dsa.py                |   5 +
 tests/hazmat/primitives/test_ec.py                 | 208 +++++++++-
 tests/hazmat/primitives/test_keywrap.py            | 116 ++++++
 tests/hazmat/primitives/test_rsa.py                |  17 +
 tests/hazmat/primitives/test_x963_vectors.py       |  72 ++++
 tests/hazmat/primitives/test_x963kdf.py            | 120 ++++++
 .../commoncrypto => tests/hypothesis}/__init__.py  |   0
 tests/hypothesis/test_fernet.py                    |  15 +
 tests/test_utils.py                                |  85 +++-
 tests/test_x509.py                                 | 441 +++++++++++++++++++++
 tests/test_x509_ext.py                             |  78 ++++
 tests/utils.py                                     |  61 ++-
 67 files changed, 2740 insertions(+), 296 deletions(-)
 create mode 100644 docs/hazmat/primitives/keywrap.rst
 create mode 100644 src/cryptography/hazmat/primitives/kdf/x963kdf.py
 create mode 100644 src/cryptography/hazmat/primitives/keywrap.py
 create mode 100644 tests/hazmat/primitives/test_keywrap.py
 create mode 100644 tests/hazmat/primitives/test_x963_vectors.py
 create mode 100644 tests/hazmat/primitives/test_x963kdf.py
 copy {src/_cffi_src/commoncrypto => tests/hypothesis}/__init__.py (100%)
 create mode 100644 tests/hypothesis/test_fernet.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