mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 05:43:55 -07:00
misc(password_hash): Changed cost
to 12
by default (#1886)
This commit is contained in:
parent
6bd000bc0d
commit
1663e19c3f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue