extended documentation
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
f92ba2cebe
commit
51d168019f
|
@ -1442,19 +1442,25 @@ $CONFIG = array(
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The allowed maximum memory to be used by the algorithm for computing a hash.
|
* The allowed maximum memory in KiB to be used by the algorithm for computing a
|
||||||
|
* hash. The smallest possible value is 8. Values that undershoot the minimum
|
||||||
|
* will be ignored in favor of the default.
|
||||||
*/
|
*/
|
||||||
'hashingMemoryCost' => PASSWORD_ARGON2_DEFAULT_MEMORY_COST,
|
'hashingMemoryCost' => PASSWORD_ARGON2_DEFAULT_MEMORY_COST,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The allowed maximum time that can be used by the algorithm for computing a
|
* The allowed maximum time in seconds that can be used by the algorithm for
|
||||||
* hash.
|
* computing a hash. The value must be an integer, and the minimum value is 1.
|
||||||
|
* Values that undershoot the minimum will be ignored in favor of the default.
|
||||||
*/
|
*/
|
||||||
'hashingTimeCost' => PASSWORD_ARGON2_DEFAULT_TIME_COST,
|
'hashingTimeCost' => PASSWORD_ARGON2_DEFAULT_TIME_COST,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The allowed number of CPU threads that can be used by the algorithm for
|
* The allowed number of CPU threads that can be used by the algorithm for
|
||||||
* computing a hash.
|
* computing a hash. The value must be an integer, and the minimum value is 1.
|
||||||
|
* Rationally it does not help to provide a number higher than the available
|
||||||
|
* threads on the machine. Values that undershoot the minimum will be ignored
|
||||||
|
* in favor of the default.
|
||||||
*/
|
*/
|
||||||
'hashingThreads' => PASSWORD_ARGON2_DEFAULT_THREADS,
|
'hashingThreads' => PASSWORD_ARGON2_DEFAULT_THREADS,
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue