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. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 3657a2c471..4b18495bea 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ setup( ]}, extras_require={ "bcrypt": ["bcrypt"], - "argon2": ["argon2-cffi >= 16.0.0"], + "argon2": ["argon2-cffi >= 16.1.0"], }, zip_safe=False, classifiers=[ -- cgit v1.3