summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2020-01-20 18:11:00 +0100
committerBackportbot <backportbot-noreply@rullzer.com>2020-01-23 10:48:42 +0000
commit42756b46555a0dc056b0709d563347beb050bb02 (patch)
tree0dc68fa70fd1041cc2697f7e4588298529df7f68 /lib
parentc9d852ade23e8cf61feae355215c4c150f7d0c99 (diff)
downloadnextcloud-server-42756b46555a0dc056b0709d563347beb050bb02.tar.gz
nextcloud-server-42756b46555a0dc056b0709d563347beb050bb02.zip
expose Argon2 options (as we did for bcrypt)
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Security/Hasher.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/private/Security/Hasher.php b/lib/private/Security/Hasher.php
index dc7704cdcb7..1c5a691455b 100644
--- a/lib/private/Security/Hasher.php
+++ b/lib/private/Security/Hasher.php
@@ -63,6 +63,12 @@ class Hasher implements IHasher {
public function __construct(IConfig $config) {
$this->config = $config;
+ $this->options = [
+ 'memory_cost' => (int)$this->config->getSystemValue('hashingMemoryCost', PASSWORD_ARGON2_DEFAULT_MEMORY_COST),
+ 'time_cost' => (int)$this->config->getSystemValue('hashingTimeCost', PASSWORD_ARGON2_DEFAULT_TIME_COST),
+ 'threads' => (int)$this->config->getSystemValue('hashingThreads', PASSWORD_ARGON2_DEFAULT_THREADS),
+ ];
+
$hashingCost = $this->config->getSystemValue('hashingCost', null);
if(!\is_null($hashingCost)) {
$this->options['cost'] = $hashingCost;