summaryrefslogtreecommitdiff
path: root/docs/lib/passlib.apps.rst
Commit message (Collapse)AuthorAgeFilesLines
* .encrypt() method renamed to .hash(), other api cleanupsEli Collins2016-06-101-4/+4
| | | | | | | | | | | | | | | | .encrypt() ---------- hash.encrypt() & context.encrypt() have been renamed to .hash(). this should take care of the long-standing issue 21 (the poor naming of .encrypt). per docs, legacy aliases will remain in place until passlib 2.0. .genhash() / .genconfig() ------------------------- taking advantage of this reorganization to also deprecate .genconfig() and .genhash() -- they're not really useful in a modern system, nor as needed for historical support as initially thought: .genconfig() will be retired completely in passlib 2.0; .genhash() is rolled into the new .hash() method along with .encrypt().
* massive cleanup of documentation typos, thanks to Thomas Waldmann (issue 27, ↵Eli Collins2013-12-271-1/+1
| | | | comment 7) (transplant of r1f5b8860b743 from default branch)
* django compatibility part 2Eli Collins2013-12-221-3/+11
| | | | | | | | * added implementation of django 1.6's bcrypt_sha256 hasher, and UTs * added django16 premade context to passlib.apps, made it default django_context * test_ext_django now makes use of django16_context * passlib.ext.django.utils.get_preset_config() now uses django16_context * tox 'django' and 'django-py3' now test bcrypt integration
* project-wide whitespace & comment cleanup (it's been a couple of years)Eli Collins2012-08-011-1/+1
|
* updated index entriesEli Collins2012-05-021-5/+5
|
* updated front matter and other documentationEli Collins2012-04-271-29/+56
|
* added support for the new Django 1.4 hash formatsEli Collins2012-04-271-11/+39
| | | | | | - updated salt handling of the existing django hashes, in a way which should be backwards compatible w/ django 1.0 - UTs now test Django hasher output against passlib handlers (reverse was already being done) - refactor of fuzz testing to reuse some of the methods.
* doc tweaksEli Collins2012-03-121-1/+8
|
* added documentation for Django hashes & contextEli Collins2011-07-101-0/+12
|
* stripped trailing whitespace from a bunch of filesEli Collins2011-07-081-3/+3
|
* updated changelog to include python 3 compat; various other documentation ↵Eli Collins2011-06-291-1/+1
| | | | updates
* PHPass now prefers portable hash over bsdi-cryptEli Collins2011-06-221-1/+7
|
* updated note about Roundup supportEli Collins2011-06-041-10/+5
|
* added new application quickstart guideEli Collins2011-06-011-3/+3
|
* various documentation updatesEli Collins2011-05-041-5/+8
|
* added some index entries; minor doc tweaksEli Collins2011-04-291-1/+5
|
* added documentation for roundup hashes & contextEli Collins2011-04-291-0/+29
|
* large rework of documentation; mainly to give more room to LDAP hashes, and ↵Eli Collins2011-04-291-1/+1
| | | | document ldap CRYPT hashes
* rearranged/expanded CryptContext docsEli Collins2011-04-261-2/+2
|
* added support for ldap {CRYPT} handlers, using PrefixWrapper to wrap base ↵Eli Collins2011-04-251-2/+9
| | | | handlers
* added instructions for building documentation; misc documentation updatesEli Collins2011-03-271-1/+4
|
* minor documentation fixesEli Collins2011-03-251-7/+7
|
* added phpass_context & phpbb3_context to passlib.appsEli Collins2011-03-241-0/+18
|
* passlib.apps workEli Collins2011-03-231-0/+108
================= * renamed passlib.servers -> passlib.apps * added custom_app_context, for quickly adding hashes to new apps * documented module