diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-05-05 18:04:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-05 18:04:06 +0200 |
commit | fe24091ffb62191237709ae8e5a2cf6cc50f3d56 (patch) | |
tree | 960d13d91a3d3049e44bae31be55b2267003301e /config | |
parent | 841a4a4e61a764b433388d8046fed2598b55dfd7 (diff) | |
parent | 1258caeab7dec7510781ba7b575390459e2e61e5 (diff) | |
download | nextcloud-server-fe24091ffb62191237709ae8e5a2cf6cc50f3d56.tar.gz nextcloud-server-fe24091ffb62191237709ae8e5a2cf6cc50f3d56.zip |
Merge pull request #32110 from plumbeo/binary-encoding-4
Save encrypted files in binary format
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index f99cb4dd2e7..5c34563f63d 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1808,6 +1808,15 @@ $CONFIG = [ 'cipher' => 'AES-256-CTR', /** + * Use the legacy base64 format for encrypted files instead of the more space-efficient + * binary format. The option affects only newly written files, existing encrypted files + * will not be touched and will remain readable whether they use the new format or not. + * + * Defaults to ``false`` + */ +'encryption.use_legacy_base64_encoding' => false, + +/** * The minimum Nextcloud desktop client version that will be allowed to sync with * this server instance. All connections made from earlier clients will be denied * by the server. Defaults to the minimum officially supported Nextcloud desktop |