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 86908e1eb4
.
This commit is contained in:
parent
4992230ca9
commit
31394de4d7
|
@ -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,
|
||||
],
|
||||
|
||||
];
|
||||
|
|
Loading…
Reference in New Issue