diff options
author | Eli Collins <elic@assurancetechnologies.com> | 2011-04-29 16:19:38 -0400 |
---|---|---|
committer | Eli Collins <elic@assurancetechnologies.com> | 2011-04-29 16:19:38 -0400 |
commit | ca12d426c495ff2823aa901ff00c9f101e5a4194 (patch) | |
tree | 608fda6e21cf5f9e9d99a9f16a353cf6550509d7 /passlib/apps.py | |
parent | 0a911f70599de598d65147dc9b19ead51ff9ab38 (diff) | |
download | passlib-ca12d426c495ff2823aa901ff00c9f101e5a4194.tar.gz |
added documentation for roundup hashes & context
Diffstat (limited to 'passlib/apps.py')
-rw-r--r-- | passlib/apps.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/passlib/apps.py b/passlib/apps.py index e401257..4a32e4e 100644 --- a/passlib/apps.py +++ b/passlib/apps.py @@ -98,10 +98,12 @@ phpbb3_context = LazyCryptContext(["phpass"], phpass__ident="H") #========================================================= _std_roundup_schemes = [ "ldap_hex_sha1", "ldap_hex_md5", "ldap_des_crypt", "roundup_plaintext" ] -roundup10 = roundup_context = LazyCryptContext(_std_roundup_schemes) +roundup10_context = LazyCryptContext(_std_roundup_schemes) -#this roundup hasn't been released yet, may have diff version... -#roundup_context = roundup15_context = LazyCryptContext(_std_roundup_schemes + [ "roundup_pbkdf2_sha1" ]) +#FIXME: next roundup will feature ldap_pbkdf2_sha1, +# but that roundup hasn't been released yet, +# so version number is unknown... currently guessing at '1.5' +roundup_context = roundup15_context = LazyCryptContext(_std_roundup_schemes + [ "ldap_pbkdf2_sha1" ]) #========================================================= # eof |