summaryrefslogtreecommitdiff
path: root/docs/lib
diff options
context:
space:
mode:
authorEli Collins <elic@assurancetechnologies.com>2011-03-05 12:26:12 -0500
committerEli Collins <elic@assurancetechnologies.com>2011-03-05 12:26:12 -0500
commite69cdbd7d5927befa0cb708e787c730c73c032e2 (patch)
treeefaef09e93ecb271ff57f797610da48d70eb0a84 /docs/lib
parentebcfd341a99584504e34ea66dbeaef0b1e503307 (diff)
downloadpasslib-e69cdbd7d5927befa0cb708e787c730c73c032e2.tar.gz
fixed wart - CryptContext now searches schemes in order, instead of reverse order (and default is now first option)
Diffstat (limited to 'docs/lib')
-rw-r--r--docs/lib/passlib.base.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/lib/passlib.base.rst b/docs/lib/passlib.base.rst
index 1c32c0a..a458e0f 100644
--- a/docs/lib/passlib.base.rst
+++ b/docs/lib/passlib.base.rst
@@ -44,7 +44,7 @@ The remaining options -
``context.schemes``
comma separated list of the schemes this context should recognize, specified by name.
when a context is identifying hashes, it will check each scheme in this list
- in reverse order. if this value is being specified programmatically,
+ in order. if this value is being specified programmatically,
it may also be a python list containing a mixture of names
and password hash handler objects.
@@ -56,7 +56,7 @@ The remaining options -
``context.default``
the default scheme context should use for generating new hashes.
- if not specified, the last entry in ``context/schemes`` is used.
+ if not specified, the first entry in ``context.schemes`` is used.
``context.min_verify_time``
if specified, all ``context.verify()`` calls will take at least this many seconds.