Merge pull request from nextcloud/increase-password-length

Increase length of passphrase to 8 words
This commit is contained in:
Lukas Reschke 2021-11-30 13:06:40 +01:00 committed by GitHub
commit c8e8c27925
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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