summaryrefslogtreecommitdiff
path: root/passlib/handlers/ldap_digests.py
Commit message (Expand)AuthorAgeFilesLines
* cleanup old python compat -- removed uascii_to_str() wrapperEli Collins2020-10-061-2/+1
* cleanup old python compat -- removed u() wrapper from some regexesEli Collins2020-10-061-8/+8
* cleanup old python compat -- replaced "unicode" alias in favor of "str"Eli Collins2020-10-061-4/+4
* minor cleanups after merge -- removed some stray u() callsEli Collins2020-10-061-2/+2
* Merge from stableEli Collins2020-10-061-2/+89
|\
| * passlib.hash: added ldap_salted_sha256 & ldap_salted_512 (issue 124)Eli Collins2020-10-051-2/+89
| * Add missing comma in python string list leading to unwanted implicit string c...Ehsan Kia2019-10-041-1/+1
* | Add missing comma in python string list leading to unwanted implicit string c...Ehsan Kia2019-10-041-1/+1
* | compat cleanup: replaced all u("") instances with u""Eli Collins2017-02-171-5/+5
|/
* passlib.utils: relocated a bunch of properties & decorators to .utils.decorEli Collins2016-11-221-1/+2
* renamed PasswordHandler.replace() back to PasswordHandler.using()Eli Collins2016-06-151-2/+2
* PasswordHash.hash() api shift: deprecating passing settings kwds into hash() --Eli Collins2016-06-151-2/+2
* handler.genconfig() / .genhash() deprecated entirelyEli Collins2016-06-131-0/+1
* .encrypt() method renamed to .hash(), other api cleanupsEli Collins2016-06-101-10/+12
* removed a LOT of compatibility shims -- dropped python 2.5, 3.0, and 3.1 supp...Eli Collins2015-01-101-3/+3
* removed some unused importsEli Collins2013-04-091-4/+2
* style cleanupsEli Collins2013-04-091-3/+3
* project-wide whitespace & comment cleanup (it's been a couple of years)Eli Collins2012-08-011-28/+27
* removed some unused files, tweaked some internal commentsEli Collins2012-06-271-10/+4
* forgot to document the relaxed=True keyword, and the strict-parameters policy.Eli Collins2012-05-021-0/+20
* mass rename of old alias for PasswordHash interfaceEli Collins2012-04-271-5/+5
* merging rewrite of all hash documentation, and password hash apiEli Collins2012-04-271-5/+26
* CryptPolicy deprecated, part2 - updated rest of library to use CryptContext d...Eli Collins2012-04-171-1/+1
* clarify behavior for secret=None and hash=NoneEli Collins2012-04-111-17/+7
* passlib.exc: added constructors for common errors, should normalize error mes...Eli Collins2012-04-101-3/+3
* ldap salted digest improvementsEli Collins2012-04-091-12/+36
* utils.handlers framework reworked; removed a bunch of boilerplate codeEli Collins2012-03-091-41/+25
* renamed calc_checksum() -> _calc_checksum(), hiding the last of the private m...Eli Collins2012-02-081-1/+1
* large refactor of GenericHandler internalsEli Collins2012-02-081-1/+1
* StaticHandler._norm_hash() should return native str typeEli Collins2012-01-181-10/+2
* import cleanupsEli Collins2012-01-181-4/+5
* renamed the utils.handlers.XX_CHARS constants to match utils.XX_CHARS (old al...Eli Collins2012-01-181-2/+2
* clarified border case where verify() accepted configuration strings instead o...Eli Collins2012-01-091-1/+1
* deprecated to_hash_str, replaced all instances with to_native_strEli Collins2011-12-281-4/+4
* fixed conversion typoEli Collins2011-12-061-1/+1
* ran a custom 2to3 fixer to replace all u"" with u() and add an import from co...Eli Collins2011-12-061-11/+11
* added compat.unicode imports in a number of placesEli Collins2011-12-061-0/+1
* stripped trailing whitespace from a bunch of filesEli Collins2011-07-081-2/+2
* StaticHandler now provides internal _norm_hash() method for subclasses to ove...Eli Collins2011-06-221-0/+10
* GenericHandler.checksum_chars now defaults to ``None``, instead of implicit H...Eli Collins2011-06-201-0/+2
* minor fixesEli Collins2011-06-201-1/+1
* converts handlers .digests, .ldap_digests, .misc to be py3 compatEli Collins2011-06-171-32/+37
* api change - renaming (min|max|default)_salt_chars attributes -> (min|max|def...Eli Collins2011-04-251-1/+1
* var naming fix for ldap_digestsEli Collins2011-04-251-3/+3
* misc tweaksEli Collins2011-04-251-1/+1
* added support for ldap {CRYPT} handlers, using PrefixWrapper to wrap base han...Eli Collins2011-04-251-2/+42
* converted most handlers to use new helper classes.Eli Collins2011-04-051-29/+28
* more error statements rewrittenEli Collins2011-03-281-3/+3
* replaced "raise exc, msg" with "raise exc(msg)" everywhere (working on py3k c...Eli Collins2011-03-281-5/+5
* enhanced ExtendedHandler to better deal with salt keyword being used to speci...Eli Collins2011-03-281-1/+2