aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/crypto/manager.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/crypto/manager.php')
-rw-r--r--phpBB/includes/crypto/manager.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/includes/crypto/manager.php b/phpBB/includes/crypto/manager.php
index 6f1aed25be..bbb844adab 100644
--- a/phpBB/includes/crypto/manager.php
+++ b/phpBB/includes/crypto/manager.php
@@ -163,6 +163,11 @@ class phpbb_crypto_manager
{
$type = ($type === '') ? $this->type : $type;
+ if (is_array($type))
+ {
+ return $this->helper->combined_hash_password($password, $type);
+ }
+
$hashing_algorithm = $this->container->get($type);
// Do not support 8-bit characters with $2a$ bcrypt
if ($type === 'crypto.driver.bcrypt' || ($type === 'crypto.driver.bcrypt_2y' && !$hashing_algorithm->is_supported()))