wah.moe/config/hashing.php
2023-07-29 17:15:39 +01:00

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