Skip to content

Commit

Permalink
According to PHP Bug 78516 Argon2 requires at least 8KB (#5097)
Browse files Browse the repository at this point in the history
https://bugs.php.net/bug.php?id=78516
Argon2 requires at least 8KB
On PHP 7.4 memory 1024 will throw:
password_hash(): Memory cost is outside of allowed memory range
  • Loading branch information
HepplerDotNet authored and taylorotwell committed Sep 9, 2019
1 parent 4dbe988 commit 74d84e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/hashing.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
*/

'argon' => [
'memory' => 1024,
'memory' => 8192,
'threads' => 2,
'time' => 2,
],
Expand Down

0 comments on commit 74d84e9

Please sign in to comment.