From 8c0a2a6383a447bcfe988f8fa46f3923e30bff17 Mon Sep 17 00:00:00 2001 From: Frankie B Date: Sat, 29 Jul 2023 18:03:13 +0100 Subject: Merge fixes into v5.5 branch (#12) --------- Co-authored-by: codacy-production[bot] <61871480+codacy-production[bot]@users.noreply.github.com> --- config/hashing.php | 37 +------------------------------------ 1 file changed, 1 insertion(+), 36 deletions(-) (limited to 'config/hashing.php') diff --git a/config/hashing.php b/config/hashing.php index bcd3be4..eca4888 100644 --- a/config/hashing.php +++ b/config/hashing.php @@ -1,52 +1,17 @@ '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' => 65536, 'threads' => 1, 'time' => 4, ], - ]; -- cgit v1.2.3-54-g00ecf