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 used.
16 // Supported: "bcrypt", "argon", "argon2id"
20 // Here you may specify the configuration options that should be used when
21 // passwords are hashed using the Bcrypt algorithm. This will allow you
22 // to control the amount of time it takes to hash the given password.
24 'rounds' => env('BCRYPT_ROUNDS', 10),
28 // Here you may specify the configuration options that should be used when
29 // passwords are hashed using the Argon algorithm. These will allow you
30 // to control the amount of time it takes to hash the given password.