[Python-modules-commits] [pycryptodome] branch master updated (2aff67b -> 899000d)

Christopher Stuart Hoskin mans0954 at moszumanska.debian.org
Sat Nov 4 09:51:28 UTC 2017


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

mans0954 pushed a change to branch master
in repository pycryptodome.

      from  2aff67b   Release 3.4.6 to unstable
       new  521c4be   record new upstream branch created by importing pycryptodome_3.4.7.orig.tar.gz
       new  d147945   Import pycryptodome_3.4.7.orig.tar.gz
       new  f62d6b6   Fix Documentation  * Only use one maths extension, choose mathimg as mathjax embedding has privacy issues  * Remove Travis and AppVeyor image links to address privacy issues  * Use debian copyright file for licenses
       new  084ab87   merge patched into master
       new  4add539   New upstream release (3.4.7)
       new  5f37c7c   Use secure URI in debian/watch
       new  0a13538   Remove new-package-should-not-package-python2-module lintian override
       new  6345072   Update extra-license-file lintian override (Sphinx now appears to create a copy of the source file with extension rst.txt)
       new  88da766   Supress privacy violations
       new  899000d   merge patched into master

The 10 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:
 Changelog.rst                                      |  30 +-
 Doc/Makefile                                       |   2 +-
 Doc/conf.py                                        |  29 +-
 Doc/epydoc-config                                  |  24 --
 Doc/index.rst                                      |   3 +-
 Doc/src/api.rst                                    |  51 ++-
 Doc/src/public_key.rst                             |   4 +
 Doc/src/vs_pycrypto.rst                            |  65 ++++
 FuturePlans.rst                                    |   2 +-
 INSTALL.rst                                        |  68 ++++
 PKG-INFO                                           |   2 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  10 +
 debian/patches/0001-Fix-Documentation.patch        |  18 +-
 .../patches/0002-Supress-privacy-violations.patch  |  27 +-
 debian/python-pycryptodome-doc.lintian-overrides   |   6 +-
 debian/watch                                       |   2 +-
 lib/Crypto/Cipher/AES.py                           | 229 ++++-------
 lib/Crypto/Cipher/ARC2.py                          | 148 +++-----
 lib/Crypto/Cipher/ARC4.py                          |  85 ++---
 lib/Crypto/Cipher/Blowfish.py                      | 134 +++----
 lib/Crypto/Cipher/CAST.py                          | 143 +++----
 lib/Crypto/Cipher/ChaCha20.py                      |  65 ++--
 lib/Crypto/Cipher/DES.py                           | 133 +++----
 lib/Crypto/Cipher/DES3.py                          | 174 +++------
 lib/Crypto/Cipher/PKCS1_OAEP.py                    | 132 +++----
 lib/Crypto/Cipher/PKCS1_v1_5.py                    | 123 +++---
 lib/Crypto/Cipher/Salsa20.py                       |  68 ++--
 lib/Crypto/Cipher/__init__.py                      |  75 ----
 lib/Crypto/Cipher/_errors.py                       |   0
 lib/Crypto/Hash/BLAKE2b.py                         | 157 ++++----
 lib/Crypto/Hash/BLAKE2s.py                         | 157 ++++----
 lib/Crypto/Hash/CMAC.py                            | 185 +++------
 lib/Crypto/Hash/HMAC.py                            | 183 +++------
 lib/Crypto/Hash/MD2.py                             |  91 ++---
 lib/Crypto/Hash/MD5.py                             |  21 +-
 lib/Crypto/Hash/RIPEMD160.py                       |  97 ++---
 lib/Crypto/Hash/SHA1.py                            |  23 +-
 lib/Crypto/Hash/SHA224.py                          |  86 ++---
 lib/Crypto/Hash/SHA256.py                          |  86 ++---
 lib/Crypto/Hash/SHA384.py                          |  86 ++---
 lib/Crypto/Hash/SHA3_224.py                        |  86 ++---
 lib/Crypto/Hash/SHA3_256.py                        |  86 ++---
 lib/Crypto/Hash/SHA3_384.py                        |  86 ++---
 lib/Crypto/Hash/SHA3_512.py                        |  87 ++---
 lib/Crypto/Hash/SHA512.py                          |  86 ++---
 lib/Crypto/Hash/SHAKE128.py                        |  71 ++--
 lib/Crypto/Hash/SHAKE256.py                        |  71 ++--
 lib/Crypto/Hash/__init__.py                        |  26 --
 lib/Crypto/Hash/keccak.py                          |  91 ++---
 lib/Crypto/IO/PEM.py                               |  41 +-
 lib/Crypto/IO/PKCS8.py                             |  82 ++--
 lib/Crypto/IO/__init__.py                          |  13 -
 lib/Crypto/Protocol/KDF.py                         | 134 +++----
 lib/Crypto/Protocol/SecretSharing.py               | 117 +++---
 lib/Crypto/Protocol/__init__.py                    |  12 -
 lib/Crypto/PublicKey/DSA.py                        | 244 +++++-------
 lib/Crypto/PublicKey/ECC.py                        | 173 ++++-----
 lib/Crypto/PublicKey/ElGamal.py                    | 171 +++------
 lib/Crypto/PublicKey/RSA.py                        | 234 ++++++------
 lib/Crypto/PublicKey/__init__.py                   |   8 -
 lib/Crypto/Random/random.py                        |   5 +-
 lib/Crypto/SelfTest/Hash/common.py                 |  10 -
 lib/Crypto/SelfTest/PublicKey/test_import_DSA.py   |   4 +-
 lib/Crypto/SelfTest/PublicKey/test_import_RSA.py   |   4 +-
 lib/Crypto/Signature/DSS.py                        | 152 ++++----
 lib/Crypto/Signature/pkcs1_15.py                   | 109 ++----
 lib/Crypto/Signature/pss.py                        | 166 ++++----
 lib/Crypto/Util/Counter.py                         |  62 +--
 lib/Crypto/Util/Padding.py                         |  42 +--
 lib/Crypto/Util/RFC1751.py                         |  37 +-
 lib/Crypto/Util/_raw_api.py                        |  35 +-
 lib/Crypto/Util/asn1.py                            | 138 +++----
 lib/Crypto/Util/number.py                          | 209 +++++------
 lib/Crypto/Util/strxor.py                          |  18 +-
 lib/Crypto/__init__.py                             |  45 +--
 PKG-INFO => pycryptodome.egg-info/PKG-INFO         |   2 +-
 pycryptodome.egg-info/SOURCES.txt                  | 417 +++++++++++++++++++++
 pycryptodome.egg-info/dependency_links.txt         |   1 +
 pycryptodome.egg-info/top_level.txt                |   1 +
 setup.cfg                                          |   1 -
 81 files changed, 2839 insertions(+), 3576 deletions(-)
 delete mode 100644 Doc/epydoc-config
 create mode 100644 Doc/src/public_key.rst
 create mode 100644 Doc/src/vs_pycrypto.rst
 delete mode 100644 lib/Crypto/Cipher/_errors.py
 copy PKG-INFO => pycryptodome.egg-info/PKG-INFO (99%)
 create mode 100644 pycryptodome.egg-info/SOURCES.txt
 create mode 100644 pycryptodome.egg-info/dependency_links.txt
 create mode 100644 pycryptodome.egg-info/top_level.txt

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pycryptodome.git



More information about the Python-modules-commits mailing list