summaryrefslogtreecommitdiff
path: root/passlib/apps.py
Commit message (Collapse)AuthorAgeFilesLines
* CryptPolicy deprecated, part2 - updated rest of library to use CryptContext ↵Eli Collins2012-04-171-1/+1
| | | | directly
* removed default policy file & objectEli Collins2012-04-091-6/+3
| | | | | | | was using default policy to store recommended defaults for hashes, but it only affects CryptContext objects, and users seem to frequent using the handler objects directly - so going to store recommended defaults in the handler from now on.
* cleanups to utilsEli Collins2012-01-181-1/+1
|
* minor doc changesEli Collins2012-01-021-0/+4
|
* CryptContext can now run passwords through SASLPrep via "passprep" options ↵Eli Collins2012-01-021-0/+5
| | | | [issue 24]
* moved sys_bits to compat, added exc_err, removed utils.py32_langEli Collins2011-12-061-1/+1
|
* phpass_context now imports bcrypt hash only if phpass_context is usedEli Collins2011-08-121-7/+11
|
* removed min_verify_time setting from custom_app_context,Eli Collins2011-08-101-1/+0
| | | | min_verify_time is too host & load dependant to be hardcoded.
* added documentation for Django hashes & contextEli Collins2011-07-101-0/+1
|
* django workEli Collins2011-06-301-0/+12
| | | | | | | * django hashes cleaned up, UTs added * added passlib.apps.django_context for reading existing django hashes * added experimental django plugin "passlib.ext.django" which monkeypatches django to use pbkdf2_sha256 (and many other features) * not listing in changelog or documenting just yet, needs more testing
* PHPass now prefers portable hash over bsdi-cryptEli Collins2011-06-221-2/+2
|
* note about stray load of bcrypt hash - should add UTs to check passlib.apps ↵Eli Collins2011-05-091-0/+2
| | | | & passlib.hosts to detect any more of these
* set roundup15_context to deprecate older schemesEli Collins2011-05-041-1/+6
|
* added documentation for roundup hashes & contextEli Collins2011-04-291-3/+5
|
* added support for hashes used by Roundup Issue trackerEli Collins2011-04-251-4/+11
| | | | | | * ldap_hex_md5, ldap_hex_sha1, roundup_plaintext, roundup_pbkdf2_sha1 * also uses ldap_des_crypt * need to add docs
* misc tweaksEli Collins2011-04-251-4/+6
|
* added support for ldap {CRYPT} handlers, using PrefixWrapper to wrap base ↵Eli Collins2011-04-251-6/+27
| | | | handlers
* converted passlib.apps & passlib.hosts to use LazyCryptContextEli Collins2011-04-081-8/+8
|
* misc bugfixes & tweaks for win32 compatEli Collins2011-03-251-4/+2
|
* added phpass_context & phpbb3_context to passlib.appsEli Collins2011-03-241-0/+10
|
* added internal noteEli Collins2011-03-231-0/+5
|
* passlib.apps workEli Collins2011-03-231-0/+65
================= * renamed passlib.servers -> passlib.apps * added custom_app_context, for quickly adding hashes to new apps * documented module