diskfloppy.me/config/hashing.php

18 lines
259 B
PHP
Raw Normal View History

2023-06-13 20:59:16 +00:00
<?php
return [
// One of "bcrypt", "argon", "argon2id"
2023-06-13 20:59:16 +00:00
'driver' => 'bcrypt',
'bcrypt' => [
'rounds' => env('BCRYPT_ROUNDS', 10),
],
'argon' => [
'memory' => 65536,
'threads' => 1,
'time' => 4,
],
];