From 14506ab9e2ea6eccd604703d446b0839399fe2c3 Mon Sep 17 00:00:00 2001 From: Miraty Date: Tue, 1 Nov 2022 00:28:50 +0100 Subject: [PATCH] Lower time_cost Argon2 param --- fn/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fn/auth.php b/fn/auth.php index c3c8843..a414eb0 100644 --- a/fn/auth.php +++ b/fn/auth.php @@ -10,7 +10,7 @@ const PLACEHOLDER_PASSWORD = '•••••••••••••••• const ALGO_PASSWORD = PASSWORD_ARGON2ID; const OPTIONS_PASSWORD = [ "memory_cost" => 65536, - "time_cost" => 24, + "time_cost" => 4, "threads" => 64, ];