瀏覽代碼

Update hashing config, set custom bcrypt or argon settings

Daniel Supernault 6 年之前
父節點
當前提交
24bc57700f
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      config/hashing.php

+ 4 - 4
config/hashing.php

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