According to PHP Bug 78516 Argon2 requires at least 8KB (#5097)

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
This commit is contained in:
Patrick Heppler 2019-09-09 20:51:51 +02:00 committed by Taylor Otwell
parent 4dbe9888a5
commit 74d84e9371

View File

@ -44,7 +44,7 @@ return [
*/
'argon' => [
'memory' => 1024,
'memory' => 8192,
'threads' => 2,
'time' => 2,
],