From 1663e19c3f80ae15792d6ffe4ce64e40129b14db Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Tue, 29 Apr 2025 20:41:03 +0300 Subject: [PATCH] misc(password_hash): Changed `cost` to `12` by default (#1886) --- library/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/config.php b/library/config.php index af87d3ace..dc4224d28 100644 --- a/library/config.php +++ b/library/config.php @@ -439,7 +439,7 @@ $bb_cfg['password_symbols'] = [ $bb_cfg['password_hash_options'] = [ // https://www.php.net/manual/ru/password.constants.php 'algo' => PASSWORD_BCRYPT, - 'options' => [] + 'options' => ['cost' => 12] ]; // Email