diff --git a/config/hashing.php b/config/hashing.php index 6cf05673..d470eb40 100644 --- a/config/hashing.php +++ b/config/hashing.php @@ -24,11 +24,11 @@ return [ | | We could define the number of rounds the bcrypt algo will be using. | - | The two digit cost parameter is the base-2 logarithm of the iteration - | count for the underlying Blowfish-based hashing algorithmeter and must - | be in range 04-31, values outside this range will cause crypt() to fail - | - | Default: 10 + | rounds: The two digit cost parameter is the base-2 logarithm of the + | iteration count for the underlying Blowfish-based hashing + | algorithmeter and must be in range 04-31, values outside this + | range will cause crypt() to fail. + | (default: 10) */ 'bcrypt' => [ @@ -42,14 +42,15 @@ return [ | | These settings could be adjusted depending on your hardware. | - | time: Maximum amount of time it may take to compute the Argon2 hash. - | (default: 2) + | time: Maximum amount of time it may take to compute the Argon2 hash. + | (default: 2) | - | memory: Maximum memory (in bytes) that may be used to compute the Argon2 hash - | (default : 1024) + | memory: Maximum memory (in bytes) that may be used to compute the Argon2 + | hash. + | (default : 1024) | - | threads: Number of threads to use for computing the Argon2 hash - | (default : 2) + | threads: Number of threads to use for computing the Argon2 hash. + | (default : 2) | */