aboutsummaryrefslogtreecommitdiff
path: root/config/hashing.php
diff options
context:
space:
mode:
Diffstat (limited to 'config/hashing.php')
-rw-r--r--config/hashing.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/config/hashing.php b/config/hashing.php
deleted file mode 100644
index eca4888..0000000
--- a/config/hashing.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-
-return [
- // One of "bcrypt", "argon", "argon2id"
- 'driver' => 'bcrypt',
-
- 'bcrypt' => [
- 'rounds' => env('BCRYPT_ROUNDS', 10),
- ],
-
-
- 'argon' => [
- 'memory' => 65536,
- 'threads' => 1,
- 'time' => 4,
- ],
-];