Merge pull request #6325 from J0WI/crypt-defaults

Update cipher defaults
This commit is contained in:
Morris Jobke
2021-03-29 13:30:13 +02:00
committed by GitHub

View File

@@ -1841,10 +1841,15 @@ Defaults to the theming app which is shipped since Nextcloud 9
::
'cipher' => 'AES-256-CFB',
'cipher' => 'AES-256-CTR',
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``
::