[Python-modules-commits] [python-asyncssh] branch master updated (848fa80 -> 04f207f)

Vincent Bernat bernat at moszumanska.debian.org
Sat Oct 31 22:54:26 UTC 2015


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

bernat pushed a change to branch master
in repository python-asyncssh.

      from  848fa80   Update Vcs fields for git migration
       new  afb06ce   record new upstream branch created by importing python-asyncssh_1.3.0.orig.tar.gz
       new  142bd97   Import python-asyncssh_1.3.0.orig.tar.gz
       new  ded4f91   make Sphinx use default theme
       new  5c4c5b5   merge patched into master
       new  6cfde6a   New upstream release.
       new  3a33863   Don't run chacha20 tests as OpenSSL doesn't support this cipher.
       new  6c7813d   merge patched into master
       new  942c19c   Don't run chacha20 tests as OpenSSL doesn't support this cipher.
       new  04f207f   merge patched into master

The 9 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:
 .coveragerc                                      |    7 +
 README.rst                                       |    6 +-
 asyncssh/__init__.py                             |    2 +-
 asyncssh/asn1.py                                 |   78 +-
 asyncssh/auth.py                                 |  210 ++--
 asyncssh/channel.py                              |   25 +-
 asyncssh/cipher.py                               |    2 +-
 asyncssh/connection.py                           |  229 ++++-
 asyncssh/crypto/__init__.py                      |   38 +-
 asyncssh/crypto/chacha.py                        |    8 +-
 asyncssh/crypto/cipher.py                        |    4 +-
 asyncssh/crypto/curve25519.py                    |   58 +-
 asyncssh/crypto/ec.py                            |  257 +++++
 asyncssh/crypto/ecdh.py                          |   48 +
 asyncssh/crypto/pyca/cipher.py                   |    3 -
 asyncssh/crypto/pyca/dsa.py                      |   80 +-
 asyncssh/crypto/pyca/ec.py                       |  118 +++
 asyncssh/crypto/pyca/rsa.py                      |   99 +-
 asyncssh/crypto/pycrypto/__init__.py             |   15 -
 asyncssh/crypto/pycrypto/cipher.py               |   67 --
 asyncssh/crypto/pycrypto/dsa.py                  |   50 -
 asyncssh/crypto/pycrypto/rsa.py                  |   51 -
 asyncssh/dh.py                                   |   21 +-
 asyncssh/dsa.py                                  |   77 +-
 asyncssh/ec.py                                   |  667 ------------
 asyncssh/{curve25519.py => ecdh.py}              |   47 +-
 asyncssh/ecdsa.py                                |  285 ++++++
 asyncssh/ed25519.py                              |   19 +-
 asyncssh/known_hosts.py                          |    7 +-
 asyncssh/packet.py                               |    9 +-
 asyncssh/pbe.py                                  |  150 +--
 asyncssh/public_key.py                           |  186 ++--
 asyncssh/rsa.py                                  |   86 +-
 asyncssh/saslprep.py                             |   10 +-
 asyncssh/sftp.py                                 |  615 +++++++----
 asyncssh/version.py                              |    2 +-
 debian/.git-dpm                                  |   14 +-
 debian/changelog                                 |    6 +
 debian/patches/do-not-test-chacha20-cipher.patch |   42 +
 debian/patches/series                            |    1 +
 debian/patches/sphinx-use-default-theme.patch    |    6 +-
 docs/api.rst                                     |   14 +-
 docs/changes.rst                                 |   80 ++
 pylintrc                                         |    2 +-
 setup.py                                         |    7 +-
 tests/__init__.py                                |    3 +-
 tests/test_asn1.py                               |  183 ++++
 tests/test_cipher.py                             |  106 ++
 tests/test_compression.py                        |   39 +
 tests/test_kex.py                                |  318 ++++++
 tests/test_keys.py                               |  361 -------
 tests/test_known_hosts.py                        |  190 ++++
 tests/test_mac.py                                |   47 +
 tests/test_native_ec.py                          |  138 +++
 tests/test_public_key.py                         | 1182 ++++++++++++++++++++++
 tests/test_saslprep.py                           |   75 ++
 tests/util.py                                    |   44 +
 57 files changed, 4428 insertions(+), 2066 deletions(-)
 create mode 100644 .coveragerc
 create mode 100644 asyncssh/crypto/ec.py
 create mode 100644 asyncssh/crypto/ecdh.py
 create mode 100644 asyncssh/crypto/pyca/ec.py
 delete mode 100644 asyncssh/crypto/pycrypto/__init__.py
 delete mode 100644 asyncssh/crypto/pycrypto/cipher.py
 delete mode 100644 asyncssh/crypto/pycrypto/dsa.py
 delete mode 100644 asyncssh/crypto/pycrypto/rsa.py
 delete mode 100644 asyncssh/ec.py
 rename asyncssh/{curve25519.py => ecdh.py} (72%)
 create mode 100644 asyncssh/ecdsa.py
 create mode 100644 debian/patches/do-not-test-chacha20-cipher.patch
 create mode 100644 tests/test_asn1.py
 create mode 100644 tests/test_cipher.py
 create mode 100644 tests/test_compression.py
 create mode 100644 tests/test_kex.py
 delete mode 100644 tests/test_keys.py
 create mode 100644 tests/test_known_hosts.py
 create mode 100644 tests/test_mac.py
 create mode 100644 tests/test_native_ec.py
 create mode 100644 tests/test_public_key.py
 create mode 100644 tests/test_saslprep.py
 create mode 100644 tests/util.py

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



More information about the Python-modules-commits mailing list