From 31394de4d736c171d40bb03d50313c60b0e4af38 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 7 Sep 2019 02:18:51 +0200 Subject: [PATCH] Revert "Set argon defaults to prevent password_hash(): Memory cost is outside of allowed memory range on PHP 7.4 (#5094)" (#5095) This reverts commit 86908e1eb4a6cc8f5474b1355db4c104c548619e. --- config/hashing.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/hashing.php b/config/hashing.php index 948fd195..84257708 100644 --- a/config/hashing.php +++ b/config/hashing.php @@ -44,9 +44,9 @@ */ 'argon' => [ - 'memory' => PASSWORD_ARGON2_DEFAULT_MEMORY_COST, - 'threads' => PASSWORD_ARGON2_DEFAULT_THREADS, - 'time' => PASSWORD_ARGON2_DEFAULT_TIME_COST, + 'memory' => 1024, + 'threads' => 2, + 'time' => 2, ], ];