From b83204a06e2a4b01f8580b5452058729786ee1d5 Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Fri, 5 Sep 2025 14:35:00 -0400 Subject: Increased the default PBKDF2 iterations for Django 6.1. --- django/contrib/auth/hashers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django') diff --git a/django/contrib/auth/hashers.py b/django/contrib/auth/hashers.py index 4bb518cb89..35a295cf17 100644 --- a/django/contrib/auth/hashers.py +++ b/django/contrib/auth/hashers.py @@ -324,7 +324,7 @@ class PBKDF2PasswordHasher(BasePasswordHasher): """ algorithm = "pbkdf2_sha256" - iterations = 1_200_000 + iterations = 1_500_000 digest = hashlib.sha256 def encode(self, password, salt, iterations=None): -- cgit v1.3