aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/crypto
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-06-15 10:37:10 +0200
committerMarc Alexander <admin@m-a-styles.de>2013-09-14 13:51:31 +0200
commit7a526284d3e60c8d97e611a8c54556c60ce0de03 (patch)
tree4ac042586f49882fd2a30bc90de86478c55ab6f5 /phpBB/includes/crypto
parent78a83691738a2bcd0e6cb27b5dcbda8809a5d615 (diff)
downloadforums-7a526284d3e60c8d97e611a8c54556c60ce0de03.tar
forums-7a526284d3e60c8d97e611a8c54556c60ce0de03.tar.gz
forums-7a526284d3e60c8d97e611a8c54556c60ce0de03.tar.bz2
forums-7a526284d3e60c8d97e611a8c54556c60ce0de03.tar.xz
forums-7a526284d3e60c8d97e611a8c54556c60ce0de03.zip
[feature/passwords] Default to bcrypt with $2y$ prefix if possible
PHPBB3-11610
Diffstat (limited to 'phpBB/includes/crypto')
-rw-r--r--phpBB/includes/crypto/manager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/crypto/manager.php b/phpBB/includes/crypto/manager.php
index e54baba9b4..2647836cc8 100644
--- a/phpBB/includes/crypto/manager.php
+++ b/phpBB/includes/crypto/manager.php
@@ -57,7 +57,7 @@ class phpbb_crypto_manager
{
$this->config = $config;
$this->container = $container;
- $this->type = 'phpbb_crypto_driver_bcrypt'; // might want to make this flexible
+ $this->type = 'crypto.driver.bcrypt_2y'; // might want to make this flexible
$this->fill_type_map($hashing_algorithms);
$this->load_crypto_helper();