summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/encryption/keys/istorage.php12
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/public/encryption/keys/istorage.php b/lib/public/encryption/keys/istorage.php
index 0a3ed44d378..2d1672face5 100644
--- a/lib/public/encryption/keys/istorage.php
+++ b/lib/public/encryption/keys/istorage.php
@@ -123,13 +123,19 @@ interface IStorage {
public function deleteSystemUserKey($keyId);
/**
+ * copy keys if a file was renamed
+ *
+ * @param string $source
+ * @param string $target
+ */
+ public function renameKeys($source, $target);
+
+ /**
* move keys if a file was renamed
*
* @param string $source
* @param string $target
- * @param string $owner
- * @param bool $systemWide
*/
- public function renameKeys($source, $target, $owner, $systemWide);
+ public function copyKeys($source, $target);
}