summaryrefslogtreecommitdiff
path: root/passlib/handlers/phpass.py
diff options
context:
space:
mode:
authorEli Collins <elic@assurancetechnologies.com>2012-01-18 15:51:31 -0500
committerEli Collins <elic@assurancetechnologies.com>2012-01-18 15:51:31 -0500
commitf77ddd297449870951cf4541f0ef042a17db616a (patch)
treed5334575b7b031eada2b7a58216e247d3aa61411 /passlib/handlers/phpass.py
parentd4ebb05e010b435c62eeb425059bc9d78e090660 (diff)
downloadpasslib-f77ddd297449870951cf4541f0ef042a17db616a.tar.gz
renamed the utils.handlers.XX_CHARS constants to match utils.XX_CHARS (old aliases kept for now)
Diffstat (limited to 'passlib/handlers/phpass.py')
-rw-r--r--passlib/handlers/phpass.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/passlib/handlers/phpass.py b/passlib/handlers/phpass.py
index ea6ddfc..d83df21 100644
--- a/passlib/handlers/phpass.py
+++ b/passlib/handlers/phpass.py
@@ -56,11 +56,11 @@ class phpass(uh.HasManyIdents, uh.HasRounds, uh.HasSalt, uh.GenericHandler):
#--GenericHandler--
name = "phpass"
setting_kwds = ("salt", "rounds", "ident")
- checksum_chars = uh.H64_CHARS
+ checksum_chars = uh.HASH64_CHARS
#--HasSalt--
min_salt_size = max_salt_size = 8
- salt_chars = uh.H64_CHARS
+ salt_chars = uh.HASH64_CHARS
#--HasRounds--
default_rounds = 9