[Python-modules-commits] [python-cryptography] 05/08: record new upstream branch created by importing python-cryptography_1.5.orig.tar.gz and merge it

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 commit to branch master
in repository python-cryptography.

commit b0725f22bc175e0eae79d56f184f3bd999d421ba
Merge: 6bd87d1 f92eaca
Author: Tristan Seligmann <mithrandi at debian.org>
Date:   Fri Aug 26 18:29:12 2016 +0200

    record new upstream branch created by importing python-cryptography_1.5.orig.tar.gz and merge it

 AUTHORS.rst                                        |   2 +
 CHANGELOG.rst                                      |  24 ++
 PKG-INFO                                           |   2 +-
 debian/.git-dpm                                    |  14 +-
 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 +-
 src/_cffi_src/openssl/conf.py                      |  24 ++
 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 +++-
 90 files changed, 1867 insertions(+), 1726 deletions(-)

diff --cc debian/.git-dpm
index 868abaf,0000000..854dc29
mode 100644,000000..100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@@ -1,11 -1,0 +1,11 @@@
 +# see git-dpm(1) from git-dpm package
- b11e8dd6d10f65b140ef8105a250ea36e971419a
- b11e8dd6d10f65b140ef8105a250ea36e971419a
- b11e8dd6d10f65b140ef8105a250ea36e971419a
- b11e8dd6d10f65b140ef8105a250ea36e971419a
- python-cryptography_1.4.orig.tar.gz
- f769cd5b007b3e1699eeefd6c4a9259ae97908b6
- 399707
++f92eaca22c831692c6c1f28488e68b771373d818
++f92eaca22c831692c6c1f28488e68b771373d818
++f92eaca22c831692c6c1f28488e68b771373d818
++f92eaca22c831692c6c1f28488e68b771373d818
++python-cryptography_1.5.orig.tar.gz
++be8293f1617b640e947ce9495531a1c18729a40e
++400318
 +debianTag="debian/%e%v"
 +patchedTag="patched/%e%v"
 +upstreamTag="upstream/%e%u"

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