Merge pull request #26363 from nextcloud/backport/26325/stable21
[stable21] Update cipher defaults
This commit is contained in:
commit
ba1d671055
|
@ -1615,10 +1615,15 @@ $CONFIG = [
|
||||||
'theme' => '',
|
'theme' => '',
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The default cipher for encrypting files. Currently AES-128-CFB and
|
* The default cipher for encrypting files. Currently supported are:
|
||||||
* AES-256-CFB are supported.
|
* - 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
|
* The minimum Nextcloud desktop client version that will be allowed to sync with
|
||||||
|
|
Loading…
Reference in New Issue