From cadcc1607d2930de4d6b63ac159f5fada807a7f8 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 30 Jun 2023 12:03:40 +0200 Subject: [PATCH] :sparkles: Increase default argon2id iterations --- backend/src/app/auth.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/app/auth.clj b/backend/src/app/auth.clj index 500f07916..0037e6900 100644 --- a/backend/src/app/auth.clj +++ b/backend/src/app/auth.clj @@ -13,8 +13,8 @@ (def default-params {:alg :argon2id - :memory (* 32768 2) - :iterations 5 + :memory (* 32768 2) ;; 64 MiB + :iterations 7 :parallelism (px/get-available-processors)}) (defn derive-password