hashing.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Default Hash Driver
  6. |--------------------------------------------------------------------------
  7. |
  8. | This option controls the default hash driver that will be used to hash
  9. | passwords for your application. By default, the bcrypt algorithm is
  10. | used; however, you remain free to modify this option if you wish.
  11. |
  12. | Supported: "bcrypt", "argon", "argon2id"
  13. |
  14. */
  15. 'driver' => env('HASH_DRIVER', 'bcrypt'),
  16. /*
  17. |--------------------------------------------------------------------------
  18. | Bcrypt Options
  19. |--------------------------------------------------------------------------
  20. |
  21. | Here you may specify the configuration options that should be used when
  22. | passwords are hashed using the Bcrypt algorithm. This will allow you
  23. | to control the amount of time it takes to hash the given password.
  24. |
  25. */
  26. 'bcrypt' => [
  27. 'rounds' => env('BCRYPT_ROUNDS', 12),
  28. 'verify' => env('HASH_VERIFY', true),
  29. ],
  30. /*
  31. |--------------------------------------------------------------------------
  32. | Argon Options
  33. |--------------------------------------------------------------------------
  34. |
  35. | Here you may specify the configuration options that should be used when
  36. | passwords are hashed using the Argon algorithm. These will allow you
  37. | to control the amount of time it takes to hash the given password.
  38. |
  39. */
  40. 'argon' => [
  41. 'memory' => env('ARGON_MEMORY', 65536),
  42. 'threads' => env('ARGON_THREADS', 1),
  43. 'time' => env('ARGON_TIME', 4),
  44. 'verify' => env('HASH_VERIFY', true),
  45. ],
  46. /*
  47. |--------------------------------------------------------------------------
  48. | Rehash On Login
  49. |--------------------------------------------------------------------------
  50. |
  51. | Setting this option to true will tell Laravel to automatically rehash
  52. | the user's password during login if the configured work factor for
  53. | the algorithm has changed, allowing graceful upgrades of hashes.
  54. |
  55. */
  56. 'rehash_on_login' => true,
  57. ];