summaryrefslogtreecommitdiff
path: root/passlib
Commit message (Expand)AuthorAgeFilesLines
* cleanup old python compat -- removed some sys.version_info refsEli Collins2020-10-062-30/+6
* cleanup old python compat -- removed PY2 & PY3 conditionalsEli Collins2020-10-0620-373/+127
* cleanup old python compat -- removed PY26 conditional, and unittest2 imports.Eli Collins2020-10-066-89/+16
* cleanup old python compat -- removed all "from __future__" importsEli Collins2020-10-0634-34/+0
* docs & setup: updates text & setup requirements to indicate we need minimumEli Collins2020-10-061-2/+2
* minor cleanups after merge -- removed some stray u() callsEli Collins2020-10-062-4/+4
* Merge from stableEli Collins2020-10-0631-337/+1719
|\
| * bumped to 1.7.3; updated docs for release1.7.3Eli Collins2020-10-061-1/+1
| * bugfix: passlib.utils: add stub safe_crypt() control flags when crypt() isn't...Eli Collins2020-10-061-0/+3
| * docs / sha crypt: commented out the "implicit_rounds" param in docs,Eli Collins2020-10-061-16/+30
| * passlib.tests: silenced some internal warnings; fixed edge case in scrypt test;Eli Collins2020-10-062-1/+4
| * passlib.tests.test_ext_django: cleaned up detection of missing django hasher ...Eli Collins2020-10-064-12/+92
| * passlib.utils: add thread lock to fix some UT failures.Eli Collins2020-10-053-6/+58
| * passlib.hash: added ldap_salted_sha256 & ldap_salted_512 (issue 124)Eli Collins2020-10-055-6/+164
| * passlib.handlers: cases where crypt() returns malformed hashEli Collins2020-10-058-43/+99
| * passlib.handlers.bcrypt: safe_verify() calls should test for NotImplementedEli Collins2020-10-052-13/+13
| * utils.safe_crypt(): turns out pypy3's crypt() *does* support raw bytes.Eli Collins2020-10-032-19/+50
| * passlib.tests: silence some warnings, fix some MissingBackendError messagesEli Collins2020-10-034-11/+22
| * passlib.tests.test_utils: reworked safe_crypt() test to not have hardcodedEli Collins2020-10-031-30/+59
| * passlib.tests: updated platform_crypt_support to reflect openbsd changes;Eli Collins2020-10-033-8/+25
| * py39 compat - fixed some uneeded escape sequencesEli Collins2020-10-036-12/+12
| * tests: fixed some minor UT errorsEli Collins2020-10-032-5/+6
| * docs: minor adjusted to doc languageEli Collins2020-05-121-3/+6
| * registry: tweak get_supported_os_crypt_schemes() warning messageEli Collins2020-05-121-1/+4
| * bugfix: bcrypt os_crypt backend: fix some more crypt.crypt() utf8 encoding is...Eli Collins2020-05-123-11/+235
| * bcrypt: silenced "2a wraparound bug" detection warning for os_crypt backend;Eli Collins2020-05-121-5/+13
| * tests / bcrypt: bcrypt_os_crypt_test now strips out non-UTF8 test vectors und...Eli Collins2020-05-122-2/+20
| * bcrypt / os_crypt backend: now throws new PasswordValueError()Eli Collins2020-05-122-18/+69
| * bugfix: bcrypt: test vector for "8bit bug" wasn't UTF8 safe,Eli Collins2020-05-122-9/+31
| * bugfix: bcrypt os_crypt backend wasn't being detected properly under py3;Eli Collins2020-05-122-5/+11
| * passlib.tests.utils: simplified OsCryptMixin's "alt hasher" test harness code.Eli Collins2020-05-122-15/+27
| * passlib.tests: fixed bug where HandlerCase.test_82_crypt_support() wasn'tEli Collins2020-05-112-23/+69
| * passlib.handlers.digests: make create_hex_digest() required=True by default;Eli Collins2020-05-111-4/+8
| * passlib.crypto.digest: followup to rev db4beabafe1b --Eli Collins2020-05-041-6/+16
| * passlib.crypto.digests: added hardcoded fallback info for common hashes;Eli Collins2020-05-022-0/+40
| * reworked lookup_hash() and create_hex_digest() internals to work betterEli Collins2020-05-026-40/+257
| * passlib.crypto.digests: cleaned up internal digests table;Eli Collins2020-05-022-6/+16
| * passlib.ext.django: fix import that was removed in django 3Eli Collins2020-03-281-1/+4
| * passlib.utils: have safe_crypt() catch OSError thrown by crypt() -- py39 compatEli Collins2020-03-281-1/+9
| * passlib.hash.bcrypt_sha256: now uses hmac-sha256 instead of plain sha256Eli Collins2020-02-162-31/+259
| * passlib.hash.bcrypt: added notes re: final salt characterEli Collins2020-02-172-3/+9
| * passlib.utils: have safe_crypt() check if crypt() is returning bytesEli Collins2020-02-171-0/+5
| * docs: various minor updatesEli Collins2020-02-161-2/+6
* | Merge from stableEli Collins2019-11-229-34/+80
|\ \ | |/
| * mark release 1.7.21.7.2Eli Collins2019-11-221-1/+1
| * bcrypt: deprecated support for "py-bcrypt" and "bcryptor" backendsEli Collins2019-11-221-0/+11
| * general: Python 2.6 & 3.3 support deprecated -- added notes in docsEli Collins2019-11-222-1/+2
| * tests: django compat fixesEli Collins2019-11-192-14/+12
| * bugfix: argon2: replace directive with equivalent that will work under py26/3...Eli Collins2019-11-192-2/+7
| * passlib.utils.handlers: split _sanitize() helper out as separate mask_value()...Eli Collins2019-11-122-17/+48