From 535c9c2895f2e21fec9df87ab9fa935cd006648c Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Tue, 30 Nov 2021 13:04:06 +0100 Subject: [PATCH] Increase length of passphrase to 8 words Fixes https://github.com/nextcloud/all-in-one/issues/4 Signed-off-by: Lukas Reschke --- php/src/Data/Setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/src/Data/Setup.php b/php/src/Data/Setup.php index 8f7223af..2ab87e36 100644 --- a/php/src/Data/Setup.php +++ b/php/src/Data/Setup.php @@ -21,7 +21,7 @@ class Setup return ''; } - $password = $this->passwordGenerator->GeneratePassword(6); + $password = $this->passwordGenerator->GeneratePassword(8); $this->configurationManager->SetPassword($password); return $password; }