Update hashing config, set custom bcrypt or argon settings

pull/855/head
Daniel Supernault 2019-02-15 20:56:15 -07:00
rodzic da0b3b5f1c
commit 24bc57700f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -29,7 +29,7 @@ return [
*/
'bcrypt' => [
'rounds' => 10,
'rounds' => env('BCRYPT_COST', 10),
],
/*
@ -44,9 +44,9 @@ return [
*/
'argon' => [
'memory' => 1024,
'threads' => 2,
'time' => 2,
'memory' => env('ARGON_MEM', 1024),
'threads' => env('ARGON_THREADS', 2),
'time' => env('ARGON_TIME', 2),
],
];