Increase length of passphrase to 8 words

Fixes https://github.com/nextcloud/all-in-one/issues/4

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
This commit is contained in:
Lukas Reschke 2021-11-30 13:04:06 +01:00
parent 0987cc2db9
commit 535c9c2895

View file

@ -21,7 +21,7 @@ class Setup
return ''; return '';
} }
$password = $this->passwordGenerator->GeneratePassword(6); $password = $this->passwordGenerator->GeneratePassword(8);
$this->configurationManager->SetPassword($password); $this->configurationManager->SetPassword($password);
return $password; return $password;
} }