diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-07-19 20:14:25 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-09-14 13:55:23 +0200 |
commit | 2e453eb2cb682031d7e521d23c3904c8dfeef70c (patch) | |
tree | 84b5e5c752b2a5c6bca135925bf4aec1bea6f1c7 /tests | |
parent | bd4664807fad02819fb680f827fb1a4411364911 (diff) | |
download | forums-2e453eb2cb682031d7e521d23c3904c8dfeef70c.tar forums-2e453eb2cb682031d7e521d23c3904c8dfeef70c.tar.gz forums-2e453eb2cb682031d7e521d23c3904c8dfeef70c.tar.bz2 forums-2e453eb2cb682031d7e521d23c3904c8dfeef70c.tar.xz forums-2e453eb2cb682031d7e521d23c3904c8dfeef70c.zip |
[feature/passwords] Add legacy support for md5 passwords
PHPBB3-11610
Diffstat (limited to 'tests')
-rw-r--r-- | tests/crypto/manager_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/crypto/manager_test.php b/tests/crypto/manager_test.php index df3e51bd75..2b6e1b311e 100644 --- a/tests/crypto/manager_test.php +++ b/tests/crypto/manager_test.php @@ -131,7 +131,7 @@ class phpbb_crypto_manager_test extends PHPUnit_Framework_TestCase public function check_hash_exceptions_data() { return array( - array('foobar', '3858F62230AC3C915F300C664312C63F', false), + array('foobar', '3858f62230ac3c915f300c664312c63f', true), array('foobar', '$S$b57a939fa4f2c04413a4eea9734a0903647b7adb93181295', false), array('foobar', '$2a\S$kkkkaakdkdiej39023903204j2k3490234jk234j02349', false), array('foobar', '$H$kklk938d023k//k3023', false), |