diff --git a/config/hashing.php b/config/hashing.php index f34179a8f19a..9eb408e09eea 100644 --- a/config/hashing.php +++ b/config/hashing.php @@ -30,7 +30,7 @@ 'bcrypt' => [ 'rounds' => env('BCRYPT_ROUNDS', 12), - 'verify' => true, + 'verify' => env('HASH_VERIFY', true), ], /* @@ -48,7 +48,7 @@ 'memory' => env('ARGON_MEMORY', 65536), 'threads' => env('ARGON_THREADS', 1), 'time' => env('ARGON_TIME', 4), - 'verify' => true, + 'verify' => env('HASH_VERIFY', true), ], /*