diff options
| author | Eli Collins <elic@assurancetechnologies.com> | 2011-03-05 12:26:12 -0500 |
|---|---|---|
| committer | Eli Collins <elic@assurancetechnologies.com> | 2011-03-05 12:26:12 -0500 |
| commit | e69cdbd7d5927befa0cb708e787c730c73c032e2 (patch) | |
| tree | efaef09e93ecb271ff57f797610da48d70eb0a84 /docs/lib | |
| parent | ebcfd341a99584504e34ea66dbeaef0b1e503307 (diff) | |
| download | passlib-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.rst | 4 |
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. |
