Update py-passlib to 1.6.2.
**1.6.2** (2013-12-26) ====================== Minor changes & compatibility fixes * Re-tuned the :attr:`~passlib.ifc.PasswordHash.default_rounds` values for all of the hashes. * Added the new :doc:`bcrypt_sha256 <lib/passlib.hash.bcrypt_sha256>` hash, which wraps BCrypt using SHA256 in order to work around BCrypt's password size limitations (:issue:`43`). * :doc:`passlib.hash.bcrypt <lib/passlib.hash.bcrypt>`: Added support for the `bcrypt <https://pypi.python.org/pypi/bcrypt>`_ library as one of the possible bcrypt backends that will be used if available. (:issue:`49`) * :mod:`passlib.ext.django`: Passlib's Django extension (and it's related hashes and unittests) have been updated to handle some minor API changes in Django 1.5-1.6. They should now be compatible with Django 1.2 and up. (:issue:`50`)
This commit is contained in:
parent
35820aa794
commit
fa0cca3d61
3 changed files with 13 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.1 2013/08/05 17:42:19 kleink Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2014/01/01 17:46:20 kleink Exp $
|
||||
|
||||
DISTNAME= passlib-1.6.1
|
||||
DISTNAME= passlib-1.6.2
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= security python
|
||||
MASTER_SITES= http://passlib.googlecode.com/files/ \
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2013/08/05 17:42:19 kleink Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2014/01/01 17:46:20 kleink Exp $
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
|
@ -152,6 +152,12 @@ ${PYSITELIB}/passlib/tests/test_ext_django.pyo
|
|||
${PYSITELIB}/passlib/tests/test_handlers.py
|
||||
${PYSITELIB}/passlib/tests/test_handlers.pyc
|
||||
${PYSITELIB}/passlib/tests/test_handlers.pyo
|
||||
${PYSITELIB}/passlib/tests/test_handlers_bcrypt.py
|
||||
${PYSITELIB}/passlib/tests/test_handlers_bcrypt.pyc
|
||||
${PYSITELIB}/passlib/tests/test_handlers_bcrypt.pyo
|
||||
${PYSITELIB}/passlib/tests/test_handlers_django.py
|
||||
${PYSITELIB}/passlib/tests/test_handlers_django.pyc
|
||||
${PYSITELIB}/passlib/tests/test_handlers_django.pyo
|
||||
${PYSITELIB}/passlib/tests/test_hosts.py
|
||||
${PYSITELIB}/passlib/tests/test_hosts.pyc
|
||||
${PYSITELIB}/passlib/tests/test_hosts.pyo
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1 2013/08/05 17:42:19 kleink Exp $
|
||||
$NetBSD: distinfo,v 1.2 2014/01/01 17:46:20 kleink Exp $
|
||||
|
||||
SHA1 (passlib-1.6.1.tar.gz) = f760a82a3b7f7f48310f6f73eac0caf136fd7eda
|
||||
RMD160 (passlib-1.6.1.tar.gz) = 61e37ea0e65118410fe129e456336191fd16471b
|
||||
Size (passlib-1.6.1.tar.gz) = 395855 bytes
|
||||
SHA1 (passlib-1.6.2.tar.gz) = 30be2a7ec83b7b28dc32eff02cd9173fbfa79fe5
|
||||
RMD160 (passlib-1.6.2.tar.gz) = 6e70c34e6f1b887cd21178c032f4c06a7622a58b
|
||||
Size (passlib-1.6.2.tar.gz) = 408950 bytes
|
||||
|
|
Loading…
Reference in a new issue