[Python-modules-commits] [python-nacl] branch upstream updated (6a0a6e0 -> e925e95)

Tristan Seligmann mithrandi at moszumanska.debian.org
Sun Mar 19 14:55:58 UTC 2017


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

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

      from  6a0a6e0   Import python-nacl_1.0.1.orig.tar.gz
       new  e925e95   Import python-nacl_1.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:
 MANIFEST.in                                        |     6 +
 PKG-INFO                                           |    37 +-
 README.rst                                         |    33 +-
 docs/api/hash.rst                                  |    42 +
 docs/api/hashlib.rst                               |    79 +
 docs/exceptions.rst                                |    54 +
 docs/hashing.rst                                   |   170 +
 docs/index.rst                                     |    17 +
 docs/password_hashing.rst                          |   133 +
 docs/public.rst                                    |    62 +-
 docs/secret.rst                                    |    39 +-
 docs/signing.rst                                   |     4 +-
 docs/utils.rst                                     |    26 +-
 setup.py                                           |    37 +-
 src/PyNaCl.egg-info/PKG-INFO                       |    37 +-
 src/PyNaCl.egg-info/SOURCES.txt                    |    69 +-
 src/PyNaCl.egg-info/requires.txt                   |     2 +-
 src/bindings/crypto_generichash.h                  |    61 +
 src/bindings/crypto_pwhash_scryptsalsa208sha256.h  |    40 +
 .../{crypto_scalarmult.h => crypto_shorthash.h}    |    11 +-
 src/bindings/{crypto_scalarmult.h => utils.h}      |     8 +-
 src/libsodium/AUTHORS                              |    14 +
 src/libsodium/ChangeLog                            |    54 +
 src/libsodium/LICENSE                              |     4 +-
 src/libsodium/Makefile.am                          |     1 +
 src/libsodium/Makefile.in                          |    16 +-
 src/libsodium/README                               |     1 -
 src/libsodium/README.markdown                      |     7 +
 src/libsodium/aclocal.m4                           |     2 +
 src/libsodium/configure                            |  2558 ++-
 src/libsodium/configure.ac                         |   167 +-
 src/libsodium/dist-build/Makefile.am               |     6 +-
 src/libsodium/dist-build/Makefile.in               |    20 +-
 src/libsodium/dist-build/android-armv8-a.sh        |     2 +-
 src/libsodium/dist-build/android-build.sh          |    43 +-
 src/libsodium/dist-build/android-mips64.sh         |     2 +-
 src/libsodium/dist-build/android-x86-64.sh         |     4 -
 src/libsodium/dist-build/android-x86_64.sh         |     4 +
 src/libsodium/dist-build/emscripten.sh             |   102 +-
 src/libsodium/dist-build/msys2-win32.sh            |    10 +-
 src/libsodium/dist-build/msys2-win64.sh            |    10 +-
 .../{nativeclient.sh => nativeclient-pnacl.sh}     |     7 +-
 src/libsodium/dist-build/nativeclient-x86.sh       |    19 +
 src/libsodium/dist-build/nativeclient-x86_64.sh    |    19 +
 src/libsodium/libsodium-uninstalled.pc.in          |     2 +-
 src/libsodium/libsodium.pc.in                      |     2 +-
 src/libsodium/libsodium.vcxproj                    |   136 +-
 src/libsodium/libsodium.vcxproj.filters            |   396 +-
 src/libsodium/m4/ax_pthread.m4                     |   485 +
 src/libsodium/m4/ax_valgrind_check.m4              |   190 +
 src/libsodium/msvc-scripts/Makefile.in             |    14 +
 src/libsodium/msvc-scripts/process.bat             |     4 +-
 src/libsodium/src/Makefile.in                      |    14 +
 src/libsodium/src/libsodium/Makefile.am            |    44 +-
 src/libsodium/src/libsodium/Makefile.in            |   327 +-
 .../aes256gcm/aesni/aead_aes256gcm_aesni.c         |   425 +-
 .../sodium/aead_chacha20poly1305.c                 |   332 +-
 .../src/libsodium/crypto_box/crypto_box_seal.c     |     4 +-
 .../ref/before_curve25519xsalsa20poly1305.c        |     5 +-
 .../curve25519/ref10/curve25519_ref10.c            |  3591 ++--
 .../crypto_core/hchacha20/core_hchacha20.c         |    86 +
 .../crypto_core/hchacha20/core_hchacha20.h         |    28 +
 .../crypto_core/hsalsa20/ref2/core_hsalsa20.c      |    84 +-
 .../crypto_core/salsa20/ref/core_salsa20.c         |   102 +-
 .../crypto_core/salsa2012/ref/core_salsa2012.c     |   102 +-
 .../crypto_core/salsa208/ref/core_salsa208.c       |   102 +-
 .../blake2/generichash_blake2_api.c                |     7 +
 .../crypto_generichash/blake2/ref/blake2-impl.h    |    89 -
 .../crypto_generichash/blake2/ref/blake2.h         |   191 +-
 .../blake2/ref/blake2b-compress-avx2.c             |    45 +
 .../blake2/ref/blake2b-compress-avx2.h             |   123 +
 .../blake2/ref/blake2b-compress-ref.c              |     5 +-
 .../blake2/ref/blake2b-compress-sse41.c            |     4 +-
 .../{blake2b-round.h => blake2b-compress-sse41.h}  |    30 +-
 .../blake2/ref/blake2b-compress-ssse3.c            |     6 +-
 .../{blake2b-round.h => blake2b-compress-ssse3.h}  |    30 +-
 .../blake2/ref/blake2b-load-avx2.h                 |   339 +
 .../blake2/ref/blake2b-load-sse2.h                 |     2 -
 .../blake2/ref/blake2b-load-sse41.h                |     2 -
 .../crypto_generichash/blake2/ref/blake2b-ref.c    |    57 +-
 .../libsodium/crypto_hash/sha256/cp/hash_sha256.c  |    62 +-
 .../libsodium/crypto_hash/sha512/cp/hash_sha512.c  |    57 +-
 .../poly1305/donna/poly1305_donna.h                |    21 +-
 .../poly1305/donna/poly1305_donna32.h              |    63 +-
 .../poly1305/donna/poly1305_donna64.h              |    51 +-
 .../poly1305/sse2/poly1305_sse2.c                  |     6 +-
 .../poly1305/sse2/poly1305_sse2.h                  |    21 +-
 .../libsodium/crypto_pwhash/argon2/argon2-core.c   |   570 +
 .../libsodium/crypto_pwhash/argon2/argon2-core.h   |   198 +
 .../crypto_pwhash/argon2/argon2-encoding.c         |   443 +
 .../crypto_pwhash/argon2/argon2-encoding.h         |    32 +
 .../crypto_pwhash/argon2/argon2-fill-block-ref.c   |   229 +
 .../crypto_pwhash/argon2/argon2-fill-block-ssse3.c |   222 +
 .../libsodium/crypto_pwhash/argon2/argon2-impl.h   |    40 +
 .../src/libsodium/crypto_pwhash/argon2/argon2.c    |   242 +
 .../src/libsodium/crypto_pwhash/argon2/argon2.h    |   251 +
 .../libsodium/crypto_pwhash/argon2/blake2b-long.c  |    80 +
 .../libsodium/crypto_pwhash/argon2/blake2b-long.h  |     8 +
 .../crypto_pwhash/argon2/blamka-round-ref.h        |    38 +
 .../crypto_pwhash/argon2/blamka-round-ssse3.h      |   117 +
 .../crypto_pwhash/argon2/pwhash_argon2i.c          |   164 +
 .../src/libsodium/crypto_pwhash/crypto_pwhash.c    |   106 +
 .../scryptsalsa208sha256/crypto_scrypt-common.c    |     2 +-
 .../scryptsalsa208sha256/crypto_scrypt.h           |     8 +-
 .../nosse/pwhash_scryptsalsa208sha256_nosse.c      |   372 +-
 .../scryptsalsa208sha256/pbkdf2-sha256.c           |     4 +-
 .../pwhash_scryptsalsa208sha256.c                  |     5 +-
 .../scryptsalsa208sha256/scrypt_platform.c         |    66 +-
 .../sse/pwhash_scryptsalsa208sha256_sse.c          |   510 +-
 .../crypto_pwhash/scryptsalsa208sha256/sysendian.h |   146 -
 .../curve25519/donna_c64/curve25519_donna_c64.c    |    35 +-
 .../curve25519/donna_c64/curve25519_donna_c64.h    |     1 +
 .../curve25519/ref10/x25519_ref10.c                |    24 +-
 .../curve25519/ref10/x25519_ref10.h                |     5 +-
 .../curve25519/sandy2x/consts_namespace.h          |     2 +-
 .../crypto_scalarmult/curve25519/sandy2x/fe.h      |     5 +-
 .../crypto_scalarmult/curve25519/sandy2x/fe51.h    |     8 +-
 .../curve25519/sandy2x/fe51_invert.c               |    82 +-
 .../curve25519/sandy2x/fe51_mul.S                  |    12 +-
 .../curve25519/sandy2x/fe51_namespace.h            |     2 +-
 .../curve25519/sandy2x/fe51_nsquare.S              |     7 +
 .../curve25519/sandy2x/fe51_pack.S                 |     7 +
 .../curve25519/sandy2x/fe_frombytes_sandy2x.c      |    63 +-
 .../crypto_scalarmult/curve25519/sandy2x/ladder.S  |  1660 +-
 .../crypto_scalarmult/curve25519/sandy2x/ladder.h  |     2 +-
 .../curve25519/sandy2x/ladder_base.S               |  1464 +-
 .../curve25519/sandy2x/ladder_base.h               |     2 +-
 .../curve25519/sandy2x/ladder_base_namespace.h     |     2 +-
 .../curve25519/sandy2x/ladder_namespace.h          |     2 +-
 .../crypto_secretbox/crypto_secretbox_easy.c       |    11 +-
 .../siphash24/ref/shorthash_siphash24.c            |    36 +-
 .../libsodium/crypto_sign/ed25519/ref10/keypair.c  |     2 +-
 .../libsodium/crypto_sign/ed25519/ref10/obsolete.c |     2 +-
 .../src/libsodium/crypto_sign/ed25519/ref10/open.c |    77 +-
 .../src/libsodium/crypto_sign/ed25519/ref10/sign.c |     2 +-
 .../aes128ctr/portable/afternm_aes128ctr.c         |    12 +-
 .../crypto_stream/aes128ctr/portable/common.h      |    19 +-
 .../aes128ctr/portable/common_aes128ctr.c          |    64 -
 .../crypto_stream/aes128ctr/portable/int128.h      |     2 +-
 .../aes128ctr/portable/int128_aes128ctr.c          |    40 +-
 .../crypto_stream/aes128ctr/portable/types.h       |     8 +-
 .../aes128ctr/portable/xor_afternm_aes128ctr.c     |    12 +-
 .../chacha20/ref/stream_chacha20_ref.c             |   133 +-
 .../chacha20/ref/stream_chacha20_ref.h             |     1 +
 .../chacha20/vec/stream_chacha20_vec.h             |     1 +
 .../salsa20/amd64_xmm6/stream_salsa20_amd64_xmm6.S |     8 +
 .../crypto_stream/salsa20/ref/stream_salsa20_ref.c |    10 +-
 .../crypto_stream/salsa20/ref/xor_salsa20_ref.c    |    10 +-
 .../crypto_stream/salsa2012/ref/stream_salsa2012.c |    10 +-
 .../crypto_stream/salsa2012/ref/xor_salsa2012.c    |    10 +-
 .../crypto_stream/salsa208/ref/stream_salsa208.c   |    10 +-
 .../crypto_stream/salsa208/ref/xor_salsa208.c      |    10 +-
 .../crypto_stream/xsalsa20/ref/stream_xsalsa20.c   |     6 +-
 .../crypto_stream/xsalsa20/ref/xor_xsalsa20.c      |     6 +-
 src/libsodium/src/libsodium/include/Makefile.am    |     3 +
 src/libsodium/src/libsodium/include/Makefile.in    |    32 +-
 src/libsodium/src/libsodium/include/sodium.h       |     3 +
 .../include/sodium/crypto_aead_aes256gcm.h         |    52 +-
 .../include/sodium/crypto_aead_chacha20poly1305.h  |   118 +-
 .../src/libsodium/include/sodium/crypto_auth.h     |     2 +-
 .../include/sodium/crypto_auth_hmacsha256.h        |     2 +-
 .../include/sodium/crypto_auth_hmacsha512.h        |     2 +-
 .../include/sodium/crypto_auth_hmacsha512256.h     |     2 +-
 .../src/libsodium/include/sodium/crypto_box.h      |     6 +-
 .../sodium/crypto_box_curve25519xsalsa20poly1305.h |    14 +-
 .../include/sodium/crypto_core_hchacha20.h         |    35 +
 .../libsodium/include/sodium/crypto_generichash.h  |     2 +-
 .../include/sodium/crypto_generichash_blake2b.h    |     5 +-
 .../src/libsodium/include/sodium/crypto_hash.h     |     2 +-
 .../libsodium/include/sodium/crypto_hash_sha256.h  |     2 +-
 .../libsodium/include/sodium/crypto_hash_sha512.h  |     2 +-
 .../libsodium/include/sodium/crypto_onetimeauth.h  |     2 +-
 .../include/sodium/crypto_onetimeauth_poly1305.h   |     2 +-
 .../src/libsodium/include/sodium/crypto_pwhash.h   |    89 +
 .../include/sodium/crypto_pwhash_argon2i.h         |    86 +
 .../sodium/crypto_pwhash_scryptsalsa208sha256.h    |     2 +-
 .../libsodium/include/sodium/crypto_secretbox.h    |     2 +-
 .../sodium/crypto_secretbox_xsalsa20poly1305.h     |    14 +-
 .../libsodium/include/sodium/crypto_shorthash.h    |     2 +-
 .../include/sodium/crypto_shorthash_siphash24.h    |     2 +-
 .../src/libsodium/include/sodium/crypto_sign.h     |     6 +-
 .../libsodium/include/sodium/crypto_sign_ed25519.h |     2 +-
 .../sodium/crypto_sign_edwards25519sha512batch.h   |    13 +-
 .../src/libsodium/include/sodium/crypto_stream.h   |     2 +-
 .../include/sodium/crypto_stream_aes128ctr.h       |     2 +-
 .../include/sodium/crypto_stream_chacha20.h        |     2 +-
 .../include/sodium/crypto_stream_salsa20.h         |     2 +-
 .../include/sodium/crypto_stream_salsa2012.h       |     2 +-
 .../include/sodium/crypto_stream_salsa208.h        |     2 +-
 .../include/sodium/crypto_stream_xsalsa20.h        |     2 +-
 .../src/libsodium/include/sodium/private/common.h  |   150 +
 .../sodium/private}/curve25519_ref10.h             |    82 +-
 .../src/libsodium/include/sodium/private/mutex.h   |     7 +
 .../src/libsodium/include/sodium/randombytes.h     |     2 +-
 .../src/libsodium/include/sodium/runtime.h         |     3 +
 .../nativeclient/randombytes_nativeclient.c        |    19 +-
 .../src/libsodium/randombytes/randombytes.c        |    43 +-
 .../salsa20/randombytes_salsa20_random.c           |    93 +-
 .../randombytes/sysrandom/randombytes_sysrandom.c  |    47 +-
 src/libsodium/src/libsodium/sodium/core.c          |   137 +-
 src/libsodium/src/libsodium/sodium/runtime.c       |    61 +-
 src/libsodium/src/libsodium/sodium/utils.c         |    51 +-
 src/libsodium/test/Makefile.in                     |    14 +
 src/libsodium/test/default/Makefile.am             |    10 +
 src/libsodium/test/default/Makefile.in             |    78 +-
 src/libsodium/test/default/aead_aes256gcm.c        |    62 +-
 src/libsodium/test/default/aead_chacha20poly1305.c |   275 +-
 src/libsodium/test/default/auth7.c                 |    10 +-
 src/libsodium/test/default/box.c                   |     8 +-
 src/libsodium/test/default/box2.c                  |     2 +-
 src/libsodium/test/default/core6.c                 |     2 +-
 src/libsodium/test/default/generichash.c           |    13 +-
 src/libsodium/test/default/generichash2.c          |    14 +-
 src/libsodium/test/default/generichash3.c          |    21 +
 src/libsodium/test/default/pwhash.c                |   354 +-
 src/libsodium/test/default/pwhash.exp              |    41 +-
 .../test/default/{pwhash.c => pwhash_scrypt.c}     |     2 +-
 .../test/default/{pwhash.exp => pwhash_scrypt.exp} |     0
 src/libsodium/test/default/randombytes.c           |     6 +-
 src/libsodium/test/default/secretbox.c             |     2 +-
 src/libsodium/test/default/secretbox2.c            |     2 +-
 src/libsodium/test/default/sign.c                  |    15 +
 src/libsodium/test/default/sodium_utils2.c         |    11 +-
 src/libsodium/test/default/sodium_utils3.c         |     6 +-
 src/libsodium/test/default/verify1.c               |     4 -
 src/libsodium/test/quirks/quirks.h                 |    28 +-
 src/nacl/__init__.py                               |     2 +-
 src/nacl/bindings/__init__.py                      |    63 +
 src/nacl/bindings/crypto_box.py                    |    55 +-
 src/nacl/bindings/crypto_generichash.py            |   215 +
 src/nacl/bindings/crypto_hash.py                   |    14 +-
 src/nacl/bindings/crypto_pwhash.py                 |   225 +
 src/nacl/bindings/crypto_scalarmult.py             |    10 +-
 src/nacl/bindings/crypto_secretbox.py              |    22 +-
 src/nacl/bindings/crypto_shorthash.py              |    40 +
 src/nacl/bindings/crypto_sign.py                   |    31 +-
 src/nacl/bindings/sodium_core.py                   |    14 +-
 src/nacl/bindings/{randombytes.py => utils.py}     |    33 +-
 src/nacl/exceptions.py                             |    41 +
 src/nacl/hash.py                                   |    75 +
 src/nacl/hashlib.py                                |   115 +
 src/nacl/public.py                                 |    79 +-
 src/nacl/pwhash.py                                 |   119 +
 src/nacl/secret.py                                 |    28 +-
 src/nacl/signing.py                                |    36 +-
 src/nacl/utils.py                                  |     7 +
 tests/data/blake2-kat.json                         | 18434 +++++++++++++++++++
 ...est-vectors-blake2-nosalt-nopersonalization.txt |    47 +
 ...to-test-vectors-blake2-salt-personalization.txt |    47 +
 tests/test_box.py                                  |    44 +
 tests/test_exc.py                                  |    43 +
 tests/test_generichash.py                          |   186 +
 tests/test_hashlib_scrypt.py                       |    90 +
 tests/test_public.py                               |   110 +
 tests/test_pwhash.py                               |   188 +
 tests/test_secret.py                               |    25 +
 tests/test_shorthash.py                            |   138 +
 tests/test_signing.py                              |    44 +
 tests/{test_utils.py => utils.py}                  |    14 +-
 tox.ini                                            |     5 +-
 260 files changed, 35116 insertions(+), 7183 deletions(-)
 create mode 100644 docs/api/hashlib.rst
 create mode 100644 docs/hashing.rst
 create mode 100644 docs/password_hashing.rst
 create mode 100644 src/bindings/crypto_generichash.h
 create mode 100644 src/bindings/crypto_pwhash_scryptsalsa208sha256.h
 copy src/bindings/{crypto_scalarmult.h => crypto_shorthash.h} (68%)
 copy src/bindings/{crypto_scalarmult.h => utils.h} (71%)
 delete mode 100644 src/libsodium/README
 delete mode 100755 src/libsodium/dist-build/android-x86-64.sh
 create mode 100755 src/libsodium/dist-build/android-x86_64.sh
 rename src/libsodium/dist-build/{nativeclient.sh => nativeclient-pnacl.sh} (81%)
 create mode 100755 src/libsodium/dist-build/nativeclient-x86.sh
 create mode 100755 src/libsodium/dist-build/nativeclient-x86_64.sh
 create mode 100644 src/libsodium/m4/ax_pthread.m4
 create mode 100644 src/libsodium/m4/ax_valgrind_check.m4
 create mode 100644 src/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c
 create mode 100644 src/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.h
 create mode 100644 src/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-avx2.c
 create mode 100644 src/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-avx2.h
 copy src/libsodium/src/libsodium/crypto_generichash/blake2/ref/{blake2b-round.h => blake2b-compress-sse41.h} (77%)
 rename src/libsodium/src/libsodium/crypto_generichash/blake2/ref/{blake2b-round.h => blake2b-compress-ssse3.h} (77%)
 create mode 100644 src/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-load-avx2.h
 create mode 100644 src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c
 create mode 100644 src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.h
 create mode 100644 src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c
 create mode 100644 src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.h
 create mode 100644 src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c
 create mode 100644 src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c
 create mode 100644 src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-impl.h
 create mode 100644 src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c
 create mode 100644 src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.h
 create mode 100644 src/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c
 create mode 100644 src/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.h
 create mode 100644 src/libsodium/src/libsodium/crypto_pwhash/argon2/blamka-round-ref.h
 create mode 100644 src/libsodium/src/libsodium/crypto_pwhash/argon2/blamka-round-ssse3.h
 create mode 100644 src/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c
 create mode 100644 src/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c
 delete mode 100644 src/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sysendian.h
 delete mode 100644 src/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/common_aes128ctr.c
 create mode 100644 src/libsodium/src/libsodium/include/sodium/crypto_core_hchacha20.h
 create mode 100644 src/libsodium/src/libsodium/include/sodium/crypto_pwhash.h
 create mode 100644 src/libsodium/src/libsodium/include/sodium/crypto_pwhash_argon2i.h
 create mode 100644 src/libsodium/src/libsodium/include/sodium/private/common.h
 rename src/libsodium/src/libsodium/{crypto_core/curve25519/ref10 => include/sodium/private}/curve25519_ref10.h (82%)
 create mode 100644 src/libsodium/src/libsodium/include/sodium/private/mutex.h
 copy src/libsodium/test/default/{pwhash.c => pwhash_scrypt.c} (99%)
 copy src/libsodium/test/default/{pwhash.exp => pwhash_scrypt.exp} (100%)
 create mode 100644 src/nacl/bindings/crypto_generichash.py
 create mode 100644 src/nacl/bindings/crypto_pwhash.py
 create mode 100644 src/nacl/bindings/crypto_shorthash.py
 copy src/nacl/bindings/{randombytes.py => utils.py} (50%)
 create mode 100644 src/nacl/hashlib.py
 create mode 100644 src/nacl/pwhash.py
 create mode 100644 tests/data/blake2-kat.json
 create mode 100644 tests/data/crypto-test-vectors-blake2-nosalt-nopersonalization.txt
 create mode 100644 tests/data/crypto-test-vectors-blake2-salt-personalization.txt
 create mode 100644 tests/test_exc.py
 create mode 100644 tests/test_generichash.py
 create mode 100644 tests/test_hashlib_scrypt.py
 create mode 100644 tests/test_public.py
 create mode 100644 tests/test_pwhash.py
 create mode 100644 tests/test_shorthash.py
 copy tests/{test_utils.py => utils.py} (69%)

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



More information about the Python-modules-commits mailing list