misc(password_hash): Changed cost to 12 by default (#1886)

This commit is contained in:
Roman Kelesidis 2025-04-29 20:41:03 +03:00 committed by GitHub
commit 1663e19c3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -439,7 +439,7 @@ $bb_cfg['password_symbols'] = [
$bb_cfg['password_hash_options'] = [ $bb_cfg['password_hash_options'] = [
// https://www.php.net/manual/ru/password.constants.php // https://www.php.net/manual/ru/password.constants.php
'algo' => PASSWORD_BCRYPT, 'algo' => PASSWORD_BCRYPT,
'options' => [] 'options' => ['cost' => 12]
]; ];
// Email // Email