summaryrefslogtreecommitdiff
path: root/passlib/handlers/sun_md5_crypt.py
Commit message (Expand)AuthorAgeFilesLines
* forgot to document the relaxed=True keyword, and the strict-parameters policy.Eli Collins2012-05-021-0/+10
* mass rename of old alias for PasswordHash interfaceEli Collins2012-04-271-1/+1
* merging rewrite of all hash documentation, and password hash apiEli Collins2012-04-271-1/+5
* clarify behavior for secret=None and hash=NoneEli Collins2012-04-111-14/+3
* passlib.exc: added constructors for common errors, should normalize error mes...Eli Collins2012-04-101-7/+7
* updated test support & py3 compat code from an external libraryEli Collins2012-03-121-3/+3
* utils.handlers framework reworked; removed a bunch of boilerplate codeEli Collins2012-03-091-1/+10
* base HandlerCase class reworkedEli Collins2012-03-091-0/+1
* 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-2/+0
* minor updatesEli Collins2012-01-191-1/+1
* simplified crypt.crypt() wrappersEli Collins2012-01-191-4/+4
* import cleanupsEli Collins2012-01-181-7/+9
* renamed the utils.handlers.XX_CHARS constants to match utils.XX_CHARS (old al...Eli Collins2012-01-181-2/+2
* deprecated to_hash_str, replaced all instances with to_native_strEli Collins2011-12-281-2/+2
* 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-12/+12
* added compat.unicode imports in a number of placesEli Collins2011-12-061-1/+1
* added compatibility module (passlib.utils.compat)Eli Collins2011-12-061-1/+2
* replaced redundant code in a few places w/ new identify_prefix() helperEli Collins2011-06-221-8/+1
* GenericHandler.checksum_chars now defaults to ``None``, instead of implicit H...Eli Collins2011-06-201-0/+1
* converted remaining handlers to py3 compat (all unix crypt hashes)Eli Collins2011-06-171-28/+36
* tightened salt info specifications; improved salt info conformance testsEli Collins2011-05-031-4/+8
* sun_md5_crypt: added new test cases; enhanced to support $$ format, variable ...Eli Collins2011-05-031-66/+111
* changed HasSalt to require explicit salt_chars; defaulting to H64_CHARS was t...Eli Collins2011-04-251-0/+1
* api change - renaming (min|max|default)_salt_chars attributes -> (min|max|def...Eli Collins2011-04-251-2/+2
* converted most handlers to use new helper classes.Eli Collins2011-04-051-3/+5
* replaced "raise exc, msg" with "raise exc(msg)" everywhere (working on py3k c...Eli Collins2011-03-281-2/+2
* big rename: changed base handler class namesEli Collins2011-03-221-2/+2
* big rename: driver->handlerEli Collins2011-03-221-0/+289