1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-22 16:22:58 +02:00

[feature/passwords] Add driver helper class for additional functions

Functions for the helper class might be used in other drivers as well and
therefore shouldn't be limited to just one driver.

PHPBB3-11610
This commit is contained in:
Marc Alexander
2013-06-15 13:34:05 +02:00
parent c9fafcefd3
commit 61e98fbd63
3 changed files with 9 additions and 28 deletions

View File

@@ -48,7 +48,7 @@ class phpbb_crypto_manager_test extends PHPUnit_Framework_TestCase
array('', '2y', 60),
array('crypto.driver.bcrypt_2y', '2y', 60),
array('crypto.driver.bcrypt', '2a', 60),
//array('crypto.driver.salted_md5', '$H$', 45),
array('crypto.driver.salted_md5', 'H', 34),
);
}