Update the default Argon2 options (#5788)

Update Laravel's default Argon2 options to the values used by PHP:
107997e58e/ext/standard/php_password.h (L32)
This commit is contained in:
claudemarson 2022-02-01 19:08:46 +01:00 committed by GitHub
parent ecf460a874
commit 13e5d272ae
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 @@ return [
*/
'argon' => [
'memory' => 1024,
'threads' => 2,
'time' => 2,
'memory' => 65536,
'threads' => 1,
'time' => 4,
],
];