From 096638ea9a883495f4eddace63fde5a7fb1b2b1f Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Thu, 3 Feb 2022 16:06:00 +0100 Subject: [PATCH] Update the default Argon2 options --- config/hashing.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/hashing.php b/config/hashing.php index 84257708..bcd3be4c 100644 --- a/config/hashing.php +++ b/config/hashing.php @@ -44,9 +44,9 @@ return [ */ 'argon' => [ - 'memory' => 1024, - 'threads' => 2, - 'time' => 2, + 'memory' => 65536, + 'threads' => 1, + 'time' => 4, ], ];