summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-05-11 09:13:45 +0200
committerGitHub <noreply@github.com>2022-05-11 09:13:45 +0200
commit02dbf1667c6da61ea9346f7c9f174a158b896811 (patch)
tree56b519f7529b6a29cbb90155c363d57585418e03 /docs
parent262fde94de5eb6544fc0f289575583436613c045 (diff)
Fixed #33691 -- Deprecated django.contrib.auth.hashers.CryptPasswordHasher.
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/deprecation.txt2
-rw-r--r--docs/releases/4.1.txt2
-rw-r--r--docs/topics/auth/passwords.txt2
3 files changed, 4 insertions, 2 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 903f2f7161..39007eb3e9 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -103,6 +103,8 @@ details on these changes.
* The ``django.contrib.gis.admin.OpenLayersWidget`` will be removed.
+* The ``django.contrib.auth.hashers.CryptPasswordHasher`` will be removed.
+
.. _deprecation-removed-in-4.1:
4.1
diff --git a/docs/releases/4.1.txt b/docs/releases/4.1.txt
index a9e6d71cd1..af129a149e 100644
--- a/docs/releases/4.1.txt
+++ b/docs/releases/4.1.txt
@@ -683,6 +683,8 @@ Miscellaneous
* The undocumented ``django.contrib.gis.admin.OpenLayersWidget`` is deprecated.
+* ``django.contrib.auth.hashers.CryptPasswordHasher`` is deprecated.
+
Features removed in 4.1
=======================
diff --git a/docs/topics/auth/passwords.txt b/docs/topics/auth/passwords.txt
index 33a57a8be5..fbac4e567d 100644
--- a/docs/topics/auth/passwords.txt
+++ b/docs/topics/auth/passwords.txt
@@ -439,7 +439,6 @@ The full list of hashers included in Django is::
'django.contrib.auth.hashers.MD5PasswordHasher',
'django.contrib.auth.hashers.UnsaltedSHA1PasswordHasher',
'django.contrib.auth.hashers.UnsaltedMD5PasswordHasher',
- 'django.contrib.auth.hashers.CryptPasswordHasher',
]
The corresponding algorithm names are:
@@ -454,7 +453,6 @@ The corresponding algorithm names are:
* ``md5``
* ``unsalted_sha1``
* ``unsalted_md5``
-* ``crypt``
.. _write-your-own-password-hasher: