diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2013-06-27 14:30:48 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2013-09-14 13:54:13 +0200 |
| commit | 556048177fa25df140f3126f46fb541ec4b0ac8b (patch) | |
| tree | a7f3790c522d826b6d6f7a57102835fa71768ba3 | |
| parent | 6f33ca85a23a53a7c50d2cfb44a60da9b0b4d02f (diff) | |
| download | forums-556048177fa25df140f3126f46fb541ec4b0ac8b.tar forums-556048177fa25df140f3126f46fb541ec4b0ac8b.tar.gz forums-556048177fa25df140f3126f46fb541ec4b0ac8b.tar.bz2 forums-556048177fa25df140f3126f46fb541ec4b0ac8b.tar.xz forums-556048177fa25df140f3126f46fb541ec4b0ac8b.zip | |
[feature/passwords] Make method get_hashing_public_algorithm public
Combined hashing requires it for checking the supplied password hash for
its hashing algorithm.
PHPBB3-11610
| -rw-r--r-- | phpBB/includes/crypto/manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/crypto/manager.php b/phpBB/includes/crypto/manager.php index bbb844adab..d54f612443 100644 --- a/phpBB/includes/crypto/manager.php +++ b/phpBB/includes/crypto/manager.php @@ -109,7 +109,7 @@ class phpbb_crypto_manager * * @throws RunTimeException If hash type is not supported */ - protected function get_hashing_algorithm($hash) + public function get_hashing_algorithm($hash) { // preg_match() will also show hashing algos like $2a\H$, which // is a combination of bcrypt and phpass |
