better comment formating

This commit is contained in:
Hugues Joyal 2018-03-18 08:59:04 -04:00
parent 18701f51ea
commit af91d97b68
1 changed files with 12 additions and 11 deletions

View File

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