From e7338f7c92e5cafbed2c2f91829f80489694f41f Mon Sep 17 00:00:00 2001 From: games647 Date: Thu, 24 Jun 2021 18:26:21 +0200 Subject: [PATCH] Raise BCrypt default cost factor for current computing power (#2360) Fixes #2356 --- .../java/fr/xephi/authme/settings/properties/HooksSettings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/fr/xephi/authme/settings/properties/HooksSettings.java b/src/main/java/fr/xephi/authme/settings/properties/HooksSettings.java index e48d5a4f..02c6e9ee 100644 --- a/src/main/java/fr/xephi/authme/settings/properties/HooksSettings.java +++ b/src/main/java/fr/xephi/authme/settings/properties/HooksSettings.java @@ -44,7 +44,7 @@ public final class HooksSettings implements SettingsHolder { @Comment("How much log2 rounds needed in BCrypt (do not change if you do not know what it does)") public static final Property BCRYPT_LOG2_ROUND = - newProperty("ExternalBoardOptions.bCryptLog2Round", 10); + newProperty("ExternalBoardOptions.bCryptLog2Round", 12); @Comment("phpBB table prefix defined during the phpBB installation process") public static final Property PHPBB_TABLE_PREFIX =