aboutsummaryrefslogtreecommitdiff
path: root/config/hashing.php
blob: eca4888445e281811e6f8e81c3f7a182a3b56a03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

return [
    // One of "bcrypt", "argon", "argon2id"
    'driver' => 'bcrypt',

    'bcrypt' => [
        'rounds' => env('BCRYPT_ROUNDS', 10),
    ],


    'argon' => [
        'memory' => 65536,
        'threads' => 1,
        'time' => 4,
    ],
];