summaryrefslogtreecommitdiff
path: root/docs/conf.py
Commit message (Collapse)AuthorAgeFilesLines
* docs: minor changesEli Collins2016-06-101-2/+5
|
* changes: updated 1.7 TODO list, reformatted some itemsEli Collins2016-02-111-0/+1
|
* relocated many of the crypto routes inside passlib.utils,Eli Collins2016-02-101-4/+0
| | | | | | | | | | | | | | | | | | | and moved them to a separate passlib.crypto subpackage. along with this move, made a few api cleanups: * unified all code that's looking up hashes to use new passlib.crypto.lookup_hash() wrapper, which takes care of hash name normalization, loading fallback implementations, and alg metadata inspection, all hidden behind a memoized function. * deprecated pbkdf2() in favor of pbkdf2_hmac() -- only real use, and new signature matches stdlib function. additionally, this version is a bit faster, due to some assumptions that can be made due to the PRF always being HMAC based. * added compile_hmac() helper which does an even more efficient job of pre-compiling a keyed HMAC function; this helped speed up pbkdf2 a bit more.
* Merge from stableEli Collins2015-08-041-1/+1
|\
| * bumped to 1.6.5; updated (c) years in a few places1.6.5Eli Collins2015-08-041-1/+1
| |
* | Merge from stableEli Collins2015-07-251-1/+1
|\ \ | |/
| * updated issue tracker url to point to bitbucketEli Collins2015-07-251-1/+1
| |
* | docs switched to use 'fulltoc' in sidebar; may reverse this later.Eli Collins2015-07-231-8/+12
| |
* | Merge from stableEli Collins2015-07-221-6/+4
|\ \ | |/
| * doc updatesEli Collins2015-07-221-6/+4
| |
* | TOTP implementation mostly finalizeEli Collins2015-01-091-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TOTP module reworked drastically. Should have committed this a long time ago. Now have what is (hopefully) the final API for the TOTP module. * Supports TOTP & HOTP * Supports URI rendering & parsing * Highlevel methods to handle state management, client clock skew estimation, etc. * Unittests mostly complete (a few edge cases) * Persistent serialization supports encrypting secrets with a password, to mitigate exposure of storage medium. * Basic API documentation. Should be suitable for following use-cases: * lowlevel methods for implementing HOTP/TOTP on server * highlevel methods for implementing HOTP/TOTP on server, and letting them handle details of tracking client state. * methods for implementing an HOTP / TOTP client.
* | comment & doc updates, removed some extraneous try/except clauses from ↵Eli Collins2013-12-281-0/+2
|/ | | | des_crypt code
* gathered together a few more documentation updatesEli Collins2013-12-281-3/+25
|
* tweaked doc build optionsEli Collins2013-12-281-2/+2
|
* 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)
* minor documentation updatesEli Collins2013-01-191-2/+2
| | | | | | | | | | | * added some backwards-compat & error handling notes to CryptContext, as suggested by Thomas Waldmann (https://code.google.com/p/passlib/issues/detail?id=27#c2) * clarified alg descriptions and internal comments for lmhash, md5_crypt, cisco, et al * deprecated_method() decorator now checks if ".. deprecated::" stanza already present in docstring * hash_needs_update() won't be removed until release 2.0
* updated to use cloud_sptheme 1.5 -- fancier table layoutsEli Collins2012-09-201-0/+3
|
* various documentation updatesEli Collins2012-09-201-13/+13
|
* large number of assorted documentation updatesEli Collins2012-08-011-47/+64
|
* project-wide whitespace & comment cleanup (it's been a couple of years)Eli Collins2012-08-011-33/+33
|
* updated index entriesEli Collins2012-05-021-0/+1
|
* loads of documentation updatesEli Collins2012-05-011-1/+1
|
* updated various bit of documentation; made 1.6 changelog presentableEli Collins2012-04-301-1/+1
|
* updated front matter and other documentationEli Collins2012-04-271-4/+11
|
* near complete rewrite of django plugin, now making publicEli Collins2012-04-271-1/+0
| | | | | | | | | | | - monkeypatching now formalized w/ a patch manager, and should be *much* more resilient. - patch states reduced greatly, simplified code and tests - now handles django 1.4 correctly - patches hashers module as well (had to write some new wrappers) - added experimental methods GenericHandler.parsehash() to back our wrapper of Hasher.safe_summary() - XXX: doesn't currently import current HASHER state, - XXX: can't import hashers into passlib either -- though left initial notes on this
* documentation updates for last two commitsEli Collins2012-02-081-1/+2
|
* documentation updates for latest round of changesEli Collins2012-01-181-2/+2
|
* updated documentation to use some cloud_sptheme 1.3 featuresEli Collins2011-12-021-8/+20
| | | | | * escaped {} literals in *samp* roles - used on some doc pages * google analytics integration for pypi docs
* misc doc changesEli Collins2011-09-141-1/+1
|
* minor doc changesEli Collins2011-07-131-0/+4
|
* added documentation for "passlib.ext.django" django app that upgrades Django ↵Eli Collins2011-07-101-1/+4
| | | | | | to support pbkdf2 * docs & module currently hidden since it hasn't had much testing yet (and may split out into separate package anyway)
* minor documentation fixesEli Collins2011-03-251-1/+0
|
* renamed 'astdoc' sphinx theme imports to 'cloud_sptheme'; other small doc fixesEli Collins2011-03-251-8/+8
|
* updated docs/conf.pyEli Collins2011-03-251-30/+45
|
* documentation workEli Collins2011-03-141-1/+1
| | | | | | | ================== * finished password hash api description * various documentation cleanups * removed unused quickstart doc
* misc documentation updatesEli Collins2011-02-241-1/+4
|
* added nthash support; document updatesEli Collins2011-02-011-2/+4
|
* updated docsEli Collins2011-01-311-3/+3
|
* doc building now uses astdoc, updated masthead & logoEli Collins2011-01-071-16/+13
|
* doc cleanupsEli Collins2011-01-061-6/+18
|
* removed uneeded bits of utils.TestCase, and some more bps depsEli Collins2011-01-061-1/+1
|
* removing bps deps, all UTs passEli Collins2011-01-061-10/+9
|
* cloning bps to passlib trunkEli Collins2011-01-061-0/+216