We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aadb30 commit 5483ecaCopy full SHA for 5483eca
src/Config/Auth.php
@@ -296,10 +296,10 @@ class Auth extends BaseConfig
296
* the "time_cost" and the number of "threads", whenever a password hash is
297
* created.
298
*/
299
- public int $hashMemoryCost = 2048; // PASSWORD_ARGON2_DEFAULT_MEMORY_COST;
+ public int $hashMemoryCost = 65536; // PASSWORD_ARGON2_DEFAULT_MEMORY_COST;
300
301
- public int $hashTimeCost = 4; // PASSWORD_ARGON2_DEFAULT_TIME_COST;
302
- public int $hashThreads = 4; // PASSWORD_ARGON2_DEFAULT_THREADS;
+ public int $hashTimeCost = 4; // PASSWORD_ARGON2_DEFAULT_TIME_COST;
+ public int $hashThreads = 1; // PASSWORD_ARGON2_DEFAULT_THREADS;
303
304
/**
305
* --------------------------------------------------------------------
0 commit comments