summaryrefslogtreecommitdiff
path: root/passlib/handlers/misc.py
Commit message (Expand)AuthorAgeFilesLines
* python compat cleanup -- use magic super() callsEli Collins2020-10-061-1/+1
* cleanup old python compat - assorted minor cleanups & fixes from conversionEli Collins2020-10-061-1/+1
* cleanup old python compat -- replaced "unicode" alias in favor of "str"Eli Collins2020-10-061-2/+2
* cleanup old python compat -- unified "unicode_or_bytes" aliasesEli Collins2020-10-061-2/+2
* compat cleanup: replaced all u("") instances with u""Eli Collins2017-02-171-4/+4
* general: went ahead and removed a bunch of deprecated features that were sche...Eli Collins2016-11-281-56/+2
* docs: minor wording corrections, replaced 'encrypt' with 'hash' in a bunch of...Eli Collins2016-11-251-2/+2
* Enhanced disabled hash managementEli Collins2016-06-261-3/+30
* renamed PasswordHandler.replace() back to PasswordHandler.using()Eli Collins2016-06-151-4/+4
* PasswordHash.hash() api shift: deprecating passing settings kwds into hash() --Eli Collins2016-06-151-11/+19
* renamed handler.using() method to handler.replace(),Eli Collins2016-06-131-1/+1
* handler.genconfig() / .genhash() deprecated entirelyEli Collins2016-06-131-11/+27
* passlib.utils: consteq() now an alias for hmac.compare_digest() on python 3.3...Eli Collins2016-06-111-2/+2
* bugfix: plaintext, htdigest, unix_disabled hashes: added missing .using() imp...Eli Collins2016-06-101-2/+4
* .encrypt() method renamed to .hash(), other api cleanupsEli Collins2016-06-101-37/+11
* renamed compat helper 'base_string_types' -> 'unicode_or_bytes_types' for cla...Eli Collins2015-01-231-4/+4
* removed a LOT of compatibility shims -- dropped python 2.5, 3.0, and 3.1 supp...Eli Collins2015-01-101-2/+2
* massive cleanup of documentation typos, thanks to Thomas Waldmann (issue 27, ...Eli Collins2013-12-271-1/+1
* project-wide whitespace & comment cleanup (it's been a couple of years)Eli Collins2012-08-011-14/+13
* unix_disabled updated to accept only certain strings, rather than act as wild...Eli Collins2012-04-301-27/+59
* mass rename of old alias for PasswordHash interfaceEli Collins2012-04-271-2/+2
* merging rewrite of all hash documentation, and password hash apiEli Collins2012-04-271-7/+13
* finally added abstract base class for the password hash interface -- passlib....Eli Collins2012-04-271-2/+2
* made support for encoding context keyword uniformEli Collins2012-04-271-16/+21
* renamed 'errname' to 'param' for to_unicode, etc; to match some of the other ...Eli Collins2012-04-271-2/+2
* assorted bugfixes, tweaks, and tests added; based on coverage examinationEli Collins2012-04-121-0/+2
* clarify behavior for secret=None and hash=NoneEli Collins2012-04-111-23/+23
* passlib.exc: added constructors for common errors, should normalize error mes...Eli Collins2012-04-101-3/+3
* *all* hashes now throw PasswordSizeError if password is larger than 4096 char...Eli Collins2012-04-091-0/+2
* did rewrite of unix_fallback as unix_disabled; unix_fallback is now deprecatedEli Collins2012-03-101-0/+77
* utils.handlers framework reworked; removed a bunch of boilerplate codeEli Collins2012-03-091-19/+46
* StaticHandler._norm_hash() should return native str typeEli Collins2012-01-181-10/+9
* import cleanupsEli Collins2012-01-181-2/+5
* clarified border case where verify() accepted configuration strings instead o...Eli Collins2012-01-091-1/+4
* deprecated to_hash_str, replaced all instances with to_native_strEli Collins2011-12-281-3/+3
* stripped trailing whitespace from a bunch of filesEli Collins2011-07-081-1/+1
* couple of bugfixes after running UTs (cpython 2.5, 2.6, 2.7, 3.1, 3.2; pypy 1.5)Eli Collins2011-06-221-1/+1
* StaticHandler now provides internal _norm_hash() method for subclasses to ove...Eli Collins2011-06-221-1/+11
* converts handlers .digests, .ldap_digests, .misc to be py3 compatEli Collins2011-06-171-5/+3
* misc tweaksEli Collins2011-04-251-1/+1
* converted most handlers to use new helper classes.Eli Collins2011-04-051-16/+4
* unix_fallback: disabled wildcard support unless explicitly enabledEli Collins2011-03-291-7/+9
* more error statements rewrittenEli Collins2011-03-281-1/+1
* replaced "raise exc, msg" with "raise exc(msg)" everywhere (working on py3k c...Eli Collins2011-03-281-4/+4
* big rename: changed base handler class namesEli Collins2011-03-221-3/+3
* big rename: driver->handlerEli Collins2011-03-221-0/+89