Bug 1003852: Digest::SHA 5.82 and newer always croak on wide characters, preventing users with Unicode passwords from logging in

r/a=glob


git-svn-id: svn://10.0.0.236/trunk@265398 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzrmirror%bugzilla.org 2014-05-12 17:45:45 +00:00
parent ea8005b4db
commit 9fd83c37bb
3 changed files with 7 additions and 7 deletions

View File

@ -1 +1 @@
9028 9029

View File

@ -1 +1 @@
70e8ab711072845b5a39394268e70a88729e9d9a d694e688d2b129e6091ee5045066f09f4578f14e

View File

@ -624,13 +624,13 @@ sub bz_crypt {
$algorithm = $1; $algorithm = $1;
} }
# Wide characters cause crypt and Digest to die.
if (Bugzilla->params->{'utf8'}) {
utf8::encode($password) if utf8::is_utf8($password);
}
my $crypted_password; my $crypted_password;
if (!$algorithm) { if (!$algorithm) {
# Wide characters cause crypt to die
if (Bugzilla->params->{'utf8'}) {
utf8::encode($password) if utf8::is_utf8($password);
}
# Crypt the password. # Crypt the password.
$crypted_password = crypt($password, $salt); $crypted_password = crypt($password, $salt);
} }