|
|
|
@ -5,5 +5,13 @@ declare(strict_types=1); |
|
|
|
use CodeHydrater\bootstrap\configure as Config; |
|
|
|
use CodeHydrater\bootstrap\configure as Config; |
|
|
|
|
|
|
|
|
|
|
|
Config::set('security', array( |
|
|
|
Config::set('security', array( |
|
|
|
|
|
|
|
// Show Debugging Info (var_dumps) |
|
|
|
'show_dumps' => true, |
|
|
|
'show_dumps' => true, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// For Perrer: $ openssl rand -base64 15 |
|
|
|
|
|
|
|
'pepper_pwd' => '5e5Tir65C8OBF2FQeGBQ', |
|
|
|
|
|
|
|
// For SALT: $ openssl rand -base64 8 |
|
|
|
|
|
|
|
'salt_pwd' => 'J+l0enf0y6M=', |
|
|
|
|
|
|
|
'hash_level' => 'normal', // low, weak, normal, and max |
|
|
|
|
|
|
|
'hash_algo' => PASSWORD_ARGON2ID, // PASSWORD_BCRYPT or newer PASSWORD_ARGON2ID |
|
|
|
)); |
|
|
|
)); |