49 lines
1.3 KiB
PHP
49 lines
1.3 KiB
PHP
<?php
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
'driver' => 'bcrypt',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Bcrypt Options
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may specify the configuration options that should be used when
|
|
| passwords are hashed using the Bcrypt algorithm.
|
|
|
|
|
*/
|
|
|
|
'bcrypt' => [
|
|
'rounds' => env('BCRYPT_ROUNDS', 10),
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Argon Options
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| These options are used when the Argon2 algorithm is selected for
|
|
| password hashing. You can configure how much memory and time
|
|
| is used when hashing the passwords using Argon.
|
|
|
|
|
*/
|
|
|
|
'argon' => [
|
|
'memory' => 65536,
|
|
'threads' => 1,
|
|
'time' => 4,
|
|
],
|
|
|
|
];
|