diff options
author | J0WI <J0WI@users.noreply.github.com> | 2021-03-26 19:38:38 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2021-03-29 18:43:36 +0000 |
commit | 581467de3262cdb5a1af8580c9d96d51b4503d55 (patch) | |
tree | ecde428e24e1f865c9e645aefc7cf3eff8b541a0 | |
parent | 9bfbf3ff7c5ef42033fcfe51ea7fb1f1b863b21d (diff) | |
download | nextcloud-server-581467de3262cdb5a1af8580c9d96d51b4503d55.tar.gz nextcloud-server-581467de3262cdb5a1af8580c9d96d51b4503d55.zip |
Update cipher defaults
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
-rw-r--r-- | config/config.sample.php | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 30ea1efb362..cc373f5afc9 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1558,10 +1558,15 @@ $CONFIG = [ 'theme' => '', /** - * The default cipher for encrypting files. Currently AES-128-CFB and - * AES-256-CFB are supported. + * The default cipher for encrypting files. Currently supported are: + * - AES-256-CTR + * - AES-128-CTR + * - AES-256-CFB + * - AES-128-CFB + * + * Defaults to ``AES-256-CTR`` */ -'cipher' => 'AES-256-CFB', +'cipher' => 'AES-256-CTR', /** * The minimum Nextcloud desktop client version that will be allowed to sync with |