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:
Taylor Otwell 2019-09-07 02:18:51 +02:00 committed by GitHub
parent 4992230ca9
commit 31394de4d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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,
],
];