Skip to content
Snippets Groups Projects
Commit 83d5080e authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #22581 from owncloud/fix_interface

since 9.0 we have a additional parameter $position used for integrity…
parents d45314be 33ec70d5
Branches
No related tags found
No related merge requests found
...@@ -71,29 +71,41 @@ interface IEncryptionModule { ...@@ -71,29 +71,41 @@ interface IEncryptionModule {
* buffer. * buffer.
* *
* @param string $path to the file * @param string $path to the file
* @param string $position id of the last block (looks like "<Number>end")
*
* @return string remained data which should be written to the file in case * @return string remained data which should be written to the file in case
* of a write operation * of a write operation
*
* @since 8.1.0 * @since 8.1.0
* @since 9.0.0 parameter $position added
*/ */
public function end($path); public function end($path, $position);
/** /**
* encrypt data * encrypt data
* *
* @param string $data you want to encrypt * @param string $data you want to encrypt
* @param string $position position of the block we want to encrypt (starts with '0')
*
* @return mixed encrypted data * @return mixed encrypted data
*
* @since 8.1.0 * @since 8.1.0
* @since 9.0.0 parameter $position added
*/ */
public function encrypt($data); public function encrypt($data, $position);
/** /**
* decrypt data * decrypt data
* *
* @param string $data you want to decrypt * @param string $data you want to decrypt
* @param string $position position of the block we want to decrypt
*
* @return mixed decrypted data * @return mixed decrypted data
*
* @since 8.1.0 * @since 8.1.0
* @since 9.0.0 parameter $position added
*/ */
public function decrypt($data); public function decrypt($data, $position);
/** /**
* update encrypted file, e.g. give additional users access to the file * update encrypted file, e.g. give additional users access to the file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment