4 * Hashing configuration options.
6 * Changes to these config files are not supported by BookStack and may break upon updates.
7 * Configuration should be altered via the `.env` file or environment variables.
8 * Do not edit this file unless you're happy to maintain any changes yourself.
13 // Default Hash Driver
14 // This option controls the default hash driver that will be used to hash
15 // passwords for your application. By default, the bcrypt algorithm is
16 // used; however, you remain free to modify this option if you wish.
17 // Supported: "bcrypt", "argon"
21 // Here you may specify the configuration options that should be used when
22 // passwords are hashed using the Bcrypt algorithm. This will allow you
23 // to control the amount of time it takes to hash the given password.
25 'rounds' => env('BCRYPT_ROUNDS', 10),
29 // Here you may specify the configuration options that should be used when
30 // passwords are hashed using the Argon algorithm. These will allow you
31 // to control the amount of time it takes to hash the given password.