diskfloppy.me/config/hashing.php
Frankie B 8c0a2a6383 Merge fixes into v5.5 branch (#12)
---------
Co-authored-by: codacy-production[bot] <61871480+codacy-production[bot]@users.noreply.github.com>
2023-07-29 18:10:50 +01:00

18 lines
259 B
PHP

<?php
return [
// One of "bcrypt", "argon", "argon2id"
'driver' => 'bcrypt',
'bcrypt' => [
'rounds' => env('BCRYPT_ROUNDS', 10),
],
'argon' => [
'memory' => 65536,
'threads' => 1,
'time' => 4,
],
];