Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update cipher defaults
Signed-off-by: J0WI <[email protected]>
  • Loading branch information
J0WI authored and backportbot[bot] committed Mar 29, 2021
commit 581467de3262cdb5a1af8580c9d96d51b4503d55
11 changes: 8 additions & 3 deletions config/config.sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -1558,10 +1558,15 @@
'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
Expand Down