1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-03 13:41:44 +03:00
Files
.github
app
Actions
Api
Auth
Config
api.php
app.php
auth.php
broadcasting.php
cache.php
clockwork.php
database.php
debugbar.php
dompdf.php
filesystems.php
hashing.php
logging.php
mail.php
oidc.php
queue.php
saml2.php
services.php
session.php
setting-defaults.php
snappy.php
view.php
Console
Entities
Exceptions
Facades
Http
Interfaces
Notifications
Providers
Settings
Theming
Traits
Translation
Uploads
Util
Application.php
Model.php
helpers.php
bootstrap
database
dev
public
resources
routes
storage
tests
themes
.env.example
.env.example.complete
.gitattributes
.gitignore
LICENSE
artisan
composer.json
composer.lock
crowdin.yml
docker-compose.yml
package-lock.json
package.json
phpstan.neon.dist
phpunit.xml
readme.md
server.php
version
bookstack/app/Config/hashing.php
2021-06-26 15:23:15 +00:00

38 lines
1.2 KiB
PHP

<?php
/**
* Hashing configuration options.
*
* Changes to these config files are not supported by BookStack and may break upon updates.
* Configuration should be altered via the `.env` file or environment variables.
* Do not edit this file unless you're happy to maintain any changes yourself.
*/
return [
// Default Hash Driver
// This option controls the default hash driver that will be used to hash
// passwords for your application. By default, the bcrypt algorithm is used.
// Supported: "bcrypt", "argon", "argon2id"
'driver' => 'bcrypt',
// Bcrypt Options
// Here you may specify the configuration options that should be used when
// passwords are hashed using the Bcrypt algorithm. This will allow you
// to control the amount of time it takes to hash the given password.
'bcrypt' => [
'rounds' => env('BCRYPT_ROUNDS', 10),
],
// Argon Options
// Here you may specify the configuration options that should be used when
// passwords are hashed using the Argon algorithm. These will allow you
// to control the amount of time it takes to hash the given password.
'argon' => [
'memory' => 1024,
'threads' => 2,
'time' => 2,
],
];