diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2015-04-24 13:02:06 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2015-04-27 13:01:18 +0200 |
commit | 27683f944289e7b37f20ec7d877ed295d5ca66a3 (patch) | |
tree | 83c7f72931cbdc6549816030bf8333a0ca9eef2d /apps/encryption_dummy | |
parent | e58029f8ad9ed4ddb1a68ea91e76e6a8d749fe27 (diff) | |
download | nextcloud-server-27683f944289e7b37f20ec7d877ed295d5ca66a3.tar.gz nextcloud-server-27683f944289e7b37f20ec7d877ed295d5ca66a3.zip |
fall back to the ownCloud default encryption module and aes128 if we read a encrypted file without a header
Diffstat (limited to 'apps/encryption_dummy')
-rw-r--r-- | apps/encryption_dummy/lib/dummymodule.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/encryption_dummy/lib/dummymodule.php b/apps/encryption_dummy/lib/dummymodule.php index e974ee468e2..141edfb58f9 100644 --- a/apps/encryption_dummy/lib/dummymodule.php +++ b/apps/encryption_dummy/lib/dummymodule.php @@ -53,6 +53,7 @@ class DummyModule implements IEncryptionModule { * * @param string $path to the file * @param string $user who read/write the file (null for public access) + * @param string $mode php stream open mode * @param array $header contains the header data read from the file * @param array $accessList who has access to the file contains the key 'users' and 'public' * @@ -60,7 +61,7 @@ class DummyModule implements IEncryptionModule { * written to the header, in case of a write operation * or if no additional data is needed return a empty array */ - public function begin($path, $user, array $header, array $accessList) { + public function begin($path, $user, $mode, array $header, array $accessList) { return array(); } |