From 540cec038fe3b2ae6859e0f26d12caf839082d03 Mon Sep 17 00:00:00 2001 From: Stephen Rees-Carter Date: Sat, 23 Sep 2023 01:06:29 +1000 Subject: [PATCH] Increase bcrypt rounds to 12 (#6245) --- config/hashing.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/hashing.php b/config/hashing.php index bcd3be4c2..ae44a3e87 100644 --- a/config/hashing.php +++ b/config/hashing.php @@ -29,7 +29,7 @@ return [ */ 'bcrypt' => [ - 'rounds' => env('BCRYPT_ROUNDS', 10), + 'rounds' => env('BCRYPT_ROUNDS', 12), ], /*