summaryrefslogtreecommitdiff
path: root/passlib/handlers/pbkdf2.py
diff options
context:
space:
mode:
authorEli Collins <elic@assurancetechnologies.com>2012-01-09 22:59:03 -0500
committerEli Collins <elic@assurancetechnologies.com>2012-01-09 22:59:03 -0500
commitc42fd113ad3da503415c70008d945e24deb3536a (patch)
treee02b75443bf12b21b60a3e89b26bc59d071e1666 /passlib/handlers/pbkdf2.py
parentda9f0aa338d97c86a0bf212c397626e61f031271 (diff)
downloadpasslib-c42fd113ad3da503415c70008d945e24deb3536a.tar.gz
clarified border case where verify() accepted configuration strings instead of throwing ValueError for some handlers
Diffstat (limited to 'passlib/handlers/pbkdf2.py')
-rw-r--r--passlib/handlers/pbkdf2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/passlib/handlers/pbkdf2.py b/passlib/handlers/pbkdf2.py
index 8b969a6..76d9966 100644
--- a/passlib/handlers/pbkdf2.py
+++ b/passlib/handlers/pbkdf2.py
@@ -340,7 +340,7 @@ class dlitz_pbkdf2_sha1(uh.HasRounds, uh.HasSalt, uh.GenericHandler):
#=========================================================
#crowd
#=========================================================
-class atlassian_pbkdf2_sha1(uh.HasRawSalt, uh.HasRawChecksum, uh.GenericHandler):
+class atlassian_pbkdf2_sha1(uh.HasStubChecksum, uh.HasRawSalt, uh.HasRawChecksum, uh.GenericHandler):
"""This class implements the PBKDF2 hash used by Atlassian.
It supports a fixed-length salt, and a fixed number of rounds.