Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2016-03-13 01:11:31 +0300
committerLukas Reschke <lukas@owncloud.com>2016-03-15 19:14:53 +0300
commitcdadd4cd1b1051b1c993eb245a27d0250f75fa74 (patch)
treeb5ea91726696c9ce3cc05e798fadaed7d563f2c0
parentb580d2627075f41b71e73145eefa4cfea4688418 (diff)
Fallback for crappy ancient distributions
Fixes https://github.com/owncloud/core/issues/23181
-rw-r--r--apps/encryption/lib/crypto/crypt.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/encryption/lib/crypto/crypt.php b/apps/encryption/lib/crypto/crypt.php
index 645f1ff0547..ca70c88488f 100644
--- a/apps/encryption/lib/crypto/crypt.php
+++ b/apps/encryption/lib/crypto/crypt.php
@@ -266,6 +266,13 @@ class Crypt {
$cipher = self::DEFAULT_CIPHER;
}
+ // Workaround for OpenSSL 0.9.8. Fallback to an old cipher that should work.
+ if(OPENSSL_VERSION_NUMBER < 0x1000101f) {
+ if($cipher === 'AES-256-CTR' || $cipher === 'AES-128-CTR') {
+ $cipher = self::LEGACY_CIPHER;
+ }
+ }
+
return $cipher;
}