| Commit message (Expand) | Author | Age | Files | Lines |
* | cleanup old python compat -- removed uascii_to_str() wrapper | Eli Collins | 2020-10-06 | 1 | -2/+1 |
* | cleanup old python compat -- removed u() wrapper from some regexes | Eli Collins | 2020-10-06 | 1 | -8/+8 |
* | cleanup old python compat -- replaced "unicode" alias in favor of "str" | Eli Collins | 2020-10-06 | 1 | -4/+4 |
* | minor cleanups after merge -- removed some stray u() calls | Eli Collins | 2020-10-06 | 1 | -2/+2 |
* | Merge from stable | Eli Collins | 2020-10-06 | 1 | -2/+89 |
|\ |
|
| * | passlib.hash: added ldap_salted_sha256 & ldap_salted_512 (issue 124) | Eli Collins | 2020-10-05 | 1 | -2/+89 |
| * | Add missing comma in python string list leading to unwanted implicit string c... | Ehsan Kia | 2019-10-04 | 1 | -1/+1 |
* | | Add missing comma in python string list leading to unwanted implicit string c... | Ehsan Kia | 2019-10-04 | 1 | -1/+1 |
* | | compat cleanup: replaced all u("") instances with u"" | Eli Collins | 2017-02-17 | 1 | -5/+5 |
|/ |
|
* | passlib.utils: relocated a bunch of properties & decorators to .utils.decor | Eli Collins | 2016-11-22 | 1 | -1/+2 |
* | renamed PasswordHandler.replace() back to PasswordHandler.using() | Eli Collins | 2016-06-15 | 1 | -2/+2 |
* | PasswordHash.hash() api shift: deprecating passing settings kwds into hash() -- | Eli Collins | 2016-06-15 | 1 | -2/+2 |
* | handler.genconfig() / .genhash() deprecated entirely | Eli Collins | 2016-06-13 | 1 | -0/+1 |
* | .encrypt() method renamed to .hash(), other api cleanups | Eli Collins | 2016-06-10 | 1 | -10/+12 |
* | removed a LOT of compatibility shims -- dropped python 2.5, 3.0, and 3.1 supp... | Eli Collins | 2015-01-10 | 1 | -3/+3 |
* | removed some unused imports | Eli Collins | 2013-04-09 | 1 | -4/+2 |
* | style cleanups | Eli Collins | 2013-04-09 | 1 | -3/+3 |
* | project-wide whitespace & comment cleanup (it's been a couple of years) | Eli Collins | 2012-08-01 | 1 | -28/+27 |
* | removed some unused files, tweaked some internal comments | Eli Collins | 2012-06-27 | 1 | -10/+4 |
* | forgot to document the relaxed=True keyword, and the strict-parameters policy. | Eli Collins | 2012-05-02 | 1 | -0/+20 |
* | mass rename of old alias for PasswordHash interface | Eli Collins | 2012-04-27 | 1 | -5/+5 |
* | merging rewrite of all hash documentation, and password hash api | Eli Collins | 2012-04-27 | 1 | -5/+26 |
* | CryptPolicy deprecated, part2 - updated rest of library to use CryptContext d... | Eli Collins | 2012-04-17 | 1 | -1/+1 |
* | clarify behavior for secret=None and hash=None | Eli Collins | 2012-04-11 | 1 | -17/+7 |
* | passlib.exc: added constructors for common errors, should normalize error mes... | Eli Collins | 2012-04-10 | 1 | -3/+3 |
* | ldap salted digest improvements | Eli Collins | 2012-04-09 | 1 | -12/+36 |
* | utils.handlers framework reworked; removed a bunch of boilerplate code | Eli Collins | 2012-03-09 | 1 | -41/+25 |
* | renamed calc_checksum() -> _calc_checksum(), hiding the last of the private m... | Eli Collins | 2012-02-08 | 1 | -1/+1 |
* | large refactor of GenericHandler internals | Eli Collins | 2012-02-08 | 1 | -1/+1 |
* | StaticHandler._norm_hash() should return native str type | Eli Collins | 2012-01-18 | 1 | -10/+2 |
* | import cleanups | Eli Collins | 2012-01-18 | 1 | -4/+5 |
* | renamed the utils.handlers.XX_CHARS constants to match utils.XX_CHARS (old al... | Eli Collins | 2012-01-18 | 1 | -2/+2 |
* | clarified border case where verify() accepted configuration strings instead o... | Eli Collins | 2012-01-09 | 1 | -1/+1 |
* | deprecated to_hash_str, replaced all instances with to_native_str | Eli Collins | 2011-12-28 | 1 | -4/+4 |
* | fixed conversion typo | Eli Collins | 2011-12-06 | 1 | -1/+1 |
* | ran a custom 2to3 fixer to replace all u"" with u() and add an import from co... | Eli Collins | 2011-12-06 | 1 | -11/+11 |
* | added compat.unicode imports in a number of places | Eli Collins | 2011-12-06 | 1 | -0/+1 |
* | stripped trailing whitespace from a bunch of files | Eli Collins | 2011-07-08 | 1 | -2/+2 |
* | StaticHandler now provides internal _norm_hash() method for subclasses to ove... | Eli Collins | 2011-06-22 | 1 | -0/+10 |
* | GenericHandler.checksum_chars now defaults to ``None``, instead of implicit H... | Eli Collins | 2011-06-20 | 1 | -0/+2 |
* | minor fixes | Eli Collins | 2011-06-20 | 1 | -1/+1 |
* | converts handlers .digests, .ldap_digests, .misc to be py3 compat | Eli Collins | 2011-06-17 | 1 | -32/+37 |
* | api change - renaming (min|max|default)_salt_chars attributes -> (min|max|def... | Eli Collins | 2011-04-25 | 1 | -1/+1 |
* | var naming fix for ldap_digests | Eli Collins | 2011-04-25 | 1 | -3/+3 |
* | misc tweaks | Eli Collins | 2011-04-25 | 1 | -1/+1 |
* | added support for ldap {CRYPT} handlers, using PrefixWrapper to wrap base han... | Eli Collins | 2011-04-25 | 1 | -2/+42 |
* | converted most handlers to use new helper classes. | Eli Collins | 2011-04-05 | 1 | -29/+28 |
* | more error statements rewritten | Eli Collins | 2011-03-28 | 1 | -3/+3 |
* | replaced "raise exc, msg" with "raise exc(msg)" everywhere (working on py3k c... | Eli Collins | 2011-03-28 | 1 | -5/+5 |
* | enhanced ExtendedHandler to better deal with salt keyword being used to speci... | Eli Collins | 2011-03-28 | 1 | -1/+2 |