Skip to content

Commit

Permalink
Merge pull request #26363 from nextcloud/backport/26325/stable21
Browse files Browse the repository at this point in the history
[stable21] Update cipher defaults
  • Loading branch information
ChristophWurst authored Mar 30, 2021
2 parents 3ebe3a0 + 6691bc4 commit ba1d671
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions config/config.sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -1615,10 +1615,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

0 comments on commit ba1d671

Please sign in to comment.