diff options
| author | Bas Westerbaan <bas@westerbaan.name> | 2016-04-22 13:26:41 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-04-25 21:17:53 -0400 |
| commit | a5033dbc58d6e09d28b8abe3acda20b9c60e0b8e (patch) | |
| tree | 7d8edefe51942a50bafbef0903c9e417de7858af /docs/internals/contributing/writing-code | |
| parent | 1ba0b22a7a262e63cb7152ef3ab513660156d135 (diff) | |
Refs #26033 -- Added password hasher support for Argon2 v1.3.
The previous version of Argon2 uses encoded hashes of the form:
$argon2d$m=8,t=1,p=1$<salt>$<data>
The new version of Argon2 adds its version into the hash:
$argon2d$v=19$m=8,t=1,p=1$<salt>$<data>
This lets Django handle both version properly.
Diffstat (limited to 'docs/internals/contributing/writing-code')
| -rw-r--r-- | docs/internals/contributing/writing-code/unit-tests.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt index b4ec5780cf..1eea23500d 100644 --- a/docs/internals/contributing/writing-code/unit-tests.txt +++ b/docs/internals/contributing/writing-code/unit-tests.txt @@ -142,7 +142,7 @@ Running all the tests If you want to run the full suite of tests, you'll need to install a number of dependencies: -* argon2-cffi_ 16.0.0+ +* argon2-cffi_ 16.1.0+ * bcrypt_ * docutils_ * enum34_ (Python 2 only) |
