diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2021-03-30 11:43:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-30 11:43:00 +0200 |
commit | 2614d99656fa50cda60855347094bc8e641959d2 (patch) | |
tree | 459954096e8b128c7a4678bfd90affcba0a8fa60 | |
parent | acafb8838db10ec3ba34c534e8969e0fd6a351cf (diff) | |
parent | 581467de3262cdb5a1af8580c9d96d51b4503d55 (diff) | |
download | nextcloud-server-2614d99656fa50cda60855347094bc8e641959d2.tar.gz nextcloud-server-2614d99656fa50cda60855347094bc8e641959d2.zip |
Merge pull request #26365 from nextcloud/backport/26325/stable19
[stable19] Update cipher defaults
-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 |