summaryrefslogtreecommitdiff
path: root/passlib/handlers/pbkdf2.py
Commit message (Expand)AuthorAgeFilesLines
* forgot to document the relaxed=True keyword, and the strict-parameters policy.Eli Collins2012-05-021-0/+50
* 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-12/+25
* finally added abstract base class for the password hash interface -- passlib....Eli Collins2012-04-271-4/+5
* sped up pbkdf2 implementation by 60% or so - upped the rounds for all pbkdf2 ...Eli Collins2012-04-191-7/+7
* a bunch of bugfixes found during unittestingEli Collins2012-04-171-1/+1
* retuned default_rounds for a few hashes based on benchmarksEli Collins2012-04-171-9/+10
* clarify behavior for secret=None and hash=NoneEli Collins2012-04-111-7/+2
* parse_mc3/render_mc3 helpers now handle rounds str<->int, consolidated a bunc...Eli Collins2012-04-101-65/+31
* passlib.exc: added constructors for common errors, should normalize error mes...Eli Collins2012-04-101-12/+12
* utils.handlers framework reworked; removed a bunch of boilerplate codeEli Collins2012-03-091-3/+3
* renamed calc_checksum() -> _calc_checksum(), hiding the last of the private m...Eli Collins2012-02-081-5/+5
* large refactor of GenericHandler internalsEli Collins2012-02-081-5/+1
* simplified crypt.crypt() wrappersEli Collins2012-01-191-4/+4
* import cleanupsEli Collins2012-01-181-14/+13
* renamed the utils.handlers.XX_CHARS constants to match utils.XX_CHARS (old al...Eli Collins2012-01-181-2/+2
* replaced utils.h64 module with utils.Base64Engine instanceEli Collins2012-01-181-6/+6
* 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-6/+6
* ran a custom 2to3 fixer to replace all u"" with u() and add an import from co...Eli Collins2011-12-061-16/+17
* added compat.unicode imports in a number of placesEli Collins2011-12-061-0/+1
* GenericHandler.checksum_chars now defaults to ``None``, instead of implicit H...Eli Collins2011-06-201-0/+1
* pbkdf2 handlers now py3 compatEli Collins2011-06-171-36/+48
* added support for Cryptacular's PBKDF2 formatEli Collins2011-06-021-1/+97
* added ldap_pbkdf2_{digest} variants; UTs & docs; removed prefix from pdkdf2_s...Eli Collins2011-04-291-4/+9
* large rework of documentation; mainly to give more room to LDAP hashes, and d...Eli Collins2011-04-291-2/+2
* changed HasSalt to require explicit salt_chars; defaulting to H64_CHARS was t...Eli Collins2011-04-251-0/+1
* similar to api change, renamed checksum_chars->checksum_size, checksum_charse...Eli Collins2011-04-251-4/+4
* api change - renaming (min|max|default)_salt_chars attributes -> (min|max|def...Eli Collins2011-04-251-14/+14
* added salt_size option to pbkdf1_{digest} and sha1_cryptEli Collins2011-04-051-3/+15
* converted most handlers to use new helper classes.Eli Collins2011-04-051-81/+48
* added atlassian_pbkdf2_sha1 - supports hash PBKDF2-based hash used by Atlassi...Eli Collins2011-04-041-1/+52
* replaced "raise exc, msg" with "raise exc(msg)" everywhere (working on py3k c...Eli Collins2011-03-281-11/+11
* added support for a bunch of PBKDF2 hash schemesEli Collins2011-03-281-0/+319