summaryrefslogtreecommitdiff
path: root/django/contrib/auth/password_validation.py
diff options
context:
space:
mode:
authormimi89999 <michel@lebihan.pl>2025-02-09 17:14:08 +0100
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-02-18 08:58:49 +0100
commit727731d76d9dfd5304d536478d862778f6dd6d9b (patch)
treeb0001cbe08132816d895dc8b8a7d704c4d866015 /django/contrib/auth/password_validation.py
parentefb7f9ced2dcf71294353596a265e3fd67faffeb (diff)
Fixed #36179 -- Unhexed entries and removed duplicates in auth/common-passwords.txt.gz.
Diffstat (limited to 'django/contrib/auth/password_validation.py')
-rw-r--r--django/contrib/auth/password_validation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/password_validation.py b/django/contrib/auth/password_validation.py
index d24e69e0ce..8032c72155 100644
--- a/django/contrib/auth/password_validation.py
+++ b/django/contrib/auth/password_validation.py
@@ -222,7 +222,7 @@ class CommonPasswordValidator:
The password is rejected if it occurs in a provided list of passwords,
which may be gzipped. The list Django ships with contains 20000 common
- passwords (lowercased and deduplicated), created by Royce Williams:
+ passwords (unhexed, lowercased and deduplicated), created by Royce Williams:
https://gist.github.com/roycewilliams/226886fd01572964e1431ac8afc999ce
The password list must be lowercased to match the comparison in validate().
"""