From a5033dbc58d6e09d28b8abe3acda20b9c60e0b8e Mon Sep 17 00:00:00 2001 From: Bas Westerbaan Date: Fri, 22 Apr 2016 13:26:41 +0200 Subject: 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$$ The new version of Argon2 adds its version into the hash: $argon2d$v=19$m=8,t=1,p=1$$ This lets Django handle both version properly. --- docs/internals/contributing/writing-code/unit-tests.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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) -- cgit v1.3