aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2020-01-22 17:45:27 +0100
committerBackportbot <backportbot-noreply@rullzer.com>2020-01-23 10:48:42 +0000
commit8f30ff3cc64bfd7edd6598817cd7c837ca7a5710 (patch)
tree8f5356f0b506f9cf2904cf43135110196c82f755 /config
parent9a7e7c3d421f1add094f36204b4d7c95684c9957 (diff)
downloadnextcloud-server-8f30ff3cc64bfd7edd6598817cd7c837ca7a5710.tar.gz
nextcloud-server-8f30ff3cc64bfd7edd6598817cd7c837ca7a5710.zip
extended documentation
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 96b42d333d1..e2d0b2b54a6 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -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,
/**
- * The allowed maximum time that can be used by the algorithm for computing a
- * hash.
+ * The allowed maximum time in seconds that can be used by the algorithm for
+ * 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,
/**
* 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,