From bf1112de7d0618ece5c107627ff18b1c0d098f85 Mon Sep 17 00:00:00 2001 From: Paul McMillan Date: Mon, 12 Mar 2012 10:43:59 +0000 Subject: [PATCH] Fixed #17777. Unsalted MD5 display widget correction. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17681 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/auth/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/auth/forms.py b/django/contrib/auth/forms.py index badd7602f6b..a88c866e4b2 100644 --- a/django/contrib/auth/forms.py +++ b/django/contrib/auth/forms.py @@ -29,7 +29,7 @@ class ReadOnlyPasswordHashWidget(forms.Widget): encoded = smart_str(encoded) if len(encoded) == 32 and '$' not in encoded: - hasher = get_hasher('md5') + hasher = get_hasher('unsalted_md5') else: algorithm = encoded.split('$', 1)[0] hasher = get_hasher(algorithm)