From 3af59cfaba9b82cd34e6d806c39026b49b013ae1 Mon Sep 17 00:00:00 2001 From: devoalda Date: Sun, 6 Aug 2023 17:14:24 +0800 Subject: [PATCH] refactor(Hash Algo): Changed Hash to Argon2id --- config/hashing.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/config/hashing.php b/config/hashing.php index bcd3be4..2ccf031 100644 --- a/config/hashing.php +++ b/config/hashing.php @@ -15,7 +15,7 @@ return [ | */ - 'driver' => 'bcrypt', + 'driver' => 'argon2id', /* |-------------------------------------------------------------------------- @@ -44,9 +44,10 @@ return [ */ 'argon' => [ - 'memory' => 65536, + 'memory' => 47104, 'threads' => 1, - 'time' => 4, + 'time' => 1, + 'parallelism' => 1, ], ];