1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/12352] Use correct hashing method in md5_mybb driver

PHPBB3-12352
This commit is contained in:
Marc Alexander
2014-05-29 12:13:02 +02:00
parent af25aef04c
commit 252a061864
2 changed files with 10 additions and 2 deletions

View File

@@ -178,7 +178,7 @@ class phpbb_passwords_helper_test extends \phpbb_test_case
return array(
array(false, 'foobar', '083d11daea8675b1b4b502c7e55f8dbd'),
array(false, 'foobar', '083d11daea8675b1b4b502c7e55f8dbd', array('user_passwd_salt' => 'ae2fc75e')),
array(true, 'foobar', '6022de2cc0ecf59ff14b57c6205ee170', array('user_passwd_salt' => 'ae2fc75e')),
array(true, 'foobar', 'b86ee7e24008bfd2890dcfab1ed31333', array('user_passwd_salt' => 'yeOtfFO6')),
);
}