diff options
| author | Jon Dufresne <jon.dufresne@gmail.com> | 2019-11-07 15:53:30 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-11-08 14:14:13 +0100 |
| commit | 85efc14a2edac532df1a9ad4dd9b6d4a4dcf583e (patch) | |
| tree | 14bef64cc49b473ffbf94d56f079b1e495137df1 /docs/topics/auth | |
| parent | eee4da3b5748370a5c562bc63d2cae61ea85b16c (diff) | |
Fixed #30948 -- Changed packaging to use declarative config in setup.cfg.
Co-authored-by: Nick Pope <nick.pope@flightdataservices.com>
Diffstat (limited to 'docs/topics/auth')
| -rw-r--r-- | docs/topics/auth/passwords.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/auth/passwords.txt b/docs/topics/auth/passwords.txt index 44e80911ba..134ef14583 100644 --- a/docs/topics/auth/passwords.txt +++ b/docs/topics/auth/passwords.txt @@ -89,7 +89,7 @@ To use Argon2 as your default storage algorithm, do the following: #. Install the `argon2-cffi library`_. This can be done by running ``python -m pip install django[argon2]``, which is equivalent to ``python -m pip install argon2-cffi`` (along with any version requirement - from Django's ``setup.py``). + from Django's ``setup.cfg``). #. Modify :setting:`PASSWORD_HASHERS` to list ``Argon2PasswordHasher`` first. That is, in your settings file, you'd put:: @@ -119,7 +119,7 @@ To use Bcrypt as your default storage algorithm, do the following: #. Install the `bcrypt library`_. This can be done by running ``python -m pip install django[bcrypt]``, which is equivalent to ``python -m pip install bcrypt`` (along with any version requirement from - Django's ``setup.py``). + Django's ``setup.cfg``). #. Modify :setting:`PASSWORD_HASHERS` to list ``BCryptSHA256PasswordHasher`` first. That is, in your settings file, you'd put:: |
