2015-01-14 22:39:23 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2015-04-07 18:02:49 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-01-14 22:39:23 +03:00
|
|
|
*
|
2015-04-07 18:02:49 +03:00
|
|
|
* @license AGPL-3.0
|
2015-01-14 22:39:23 +03:00
|
|
|
*
|
2015-04-07 18:02:49 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2015-01-14 22:39:23 +03:00
|
|
|
*
|
2015-04-07 18:02:49 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2015-01-14 22:39:23 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-04-07 18:02:49 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-01-14 22:39:23 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCP\Encryption\Keys;
|
|
|
|
|
2015-04-16 18:00:08 +03:00
|
|
|
/**
|
|
|
|
* Interface IStorage
|
|
|
|
*
|
|
|
|
* @package OCP\Encryption\Keys
|
|
|
|
* @since 8.1.0
|
|
|
|
*/
|
2015-01-14 22:39:23 +03:00
|
|
|
interface IStorage {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get user specific key
|
|
|
|
*
|
|
|
|
* @param string $uid ID if the user for whom we want the key
|
|
|
|
* @param string $keyId id of the key
|
2015-04-22 12:18:18 +03:00
|
|
|
* @param string $encryptionModuleId
|
2015-01-14 22:39:23 +03:00
|
|
|
*
|
|
|
|
* @return mixed key
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-14 22:39:23 +03:00
|
|
|
*/
|
2015-04-22 12:18:18 +03:00
|
|
|
public function getUserKey($uid, $keyId, $encryptionModuleId);
|
2015-01-14 22:39:23 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get file specific key
|
|
|
|
*
|
|
|
|
* @param string $path path to file
|
|
|
|
* @param string $keyId id of the key
|
2015-04-22 12:18:18 +03:00
|
|
|
* @param string $encryptionModuleId
|
2015-01-14 22:39:23 +03:00
|
|
|
*
|
|
|
|
* @return mixed key
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-14 22:39:23 +03:00
|
|
|
*/
|
2015-04-22 12:18:18 +03:00
|
|
|
public function getFileKey($path, $keyId, $encryptionModuleId);
|
2015-01-14 22:39:23 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get system-wide encryption keys not related to a specific user,
|
|
|
|
* e.g something like a key for public link shares
|
|
|
|
*
|
|
|
|
* @param string $keyId id of the key
|
2015-04-22 12:18:18 +03:00
|
|
|
* @param string $encryptionModuleId
|
2015-01-14 22:39:23 +03:00
|
|
|
*
|
|
|
|
* @return mixed key
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-14 22:39:23 +03:00
|
|
|
*/
|
2015-04-22 12:18:18 +03:00
|
|
|
public function getSystemUserKey($keyId, $encryptionModuleId);
|
2015-01-14 22:39:23 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* set user specific key
|
|
|
|
*
|
|
|
|
* @param string $uid ID if the user for whom we want the key
|
|
|
|
* @param string $keyId id of the key
|
|
|
|
* @param mixed $key
|
2015-04-22 12:18:18 +03:00
|
|
|
* @param string $encryptionModuleId
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-14 22:39:23 +03:00
|
|
|
*/
|
2015-04-22 12:18:18 +03:00
|
|
|
public function setUserKey($uid, $keyId, $key, $encryptionModuleId);
|
2015-01-14 22:39:23 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* set file specific key
|
|
|
|
*
|
|
|
|
* @param string $path path to file
|
|
|
|
* @param string $keyId id of the key
|
2015-04-22 12:18:18 +03:00
|
|
|
* @param mixed $key
|
|
|
|
* @param string $encryptionModuleId
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-14 22:39:23 +03:00
|
|
|
*/
|
2015-04-22 12:18:18 +03:00
|
|
|
public function setFileKey($path, $keyId, $key, $encryptionModuleId);
|
2015-01-14 22:39:23 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* set system-wide encryption keys not related to a specific user,
|
|
|
|
* e.g something like a key for public link shares
|
|
|
|
*
|
|
|
|
* @param string $keyId id of the key
|
|
|
|
* @param mixed $key
|
2015-04-22 12:18:18 +03:00
|
|
|
* @param string $encryptionModuleId
|
2015-01-14 22:39:23 +03:00
|
|
|
*
|
|
|
|
* @return mixed key
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-14 22:39:23 +03:00
|
|
|
*/
|
2015-04-22 12:18:18 +03:00
|
|
|
public function setSystemUserKey($keyId, $key, $encryptionModuleId);
|
2015-01-14 22:39:23 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* delete user specific key
|
|
|
|
*
|
|
|
|
* @param string $uid ID if the user for whom we want to delete the key
|
|
|
|
* @param string $keyId id of the key
|
2015-04-22 12:18:18 +03:00
|
|
|
* @param string $encryptionModuleId
|
2015-01-14 22:39:23 +03:00
|
|
|
*
|
2015-04-09 11:28:02 +03:00
|
|
|
* @return boolean False when the key could not be deleted
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-14 22:39:23 +03:00
|
|
|
*/
|
2015-04-22 12:18:18 +03:00
|
|
|
public function deleteUserKey($uid, $keyId, $encryptionModuleId);
|
2015-01-14 22:39:23 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* delete file specific key
|
|
|
|
*
|
|
|
|
* @param string $path path to file
|
|
|
|
* @param string $keyId id of the key
|
2015-04-22 12:18:18 +03:00
|
|
|
* @param string $encryptionModuleId
|
2015-01-14 22:39:23 +03:00
|
|
|
*
|
2015-04-09 11:28:02 +03:00
|
|
|
* @return boolean False when the key could not be deleted
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-14 22:39:23 +03:00
|
|
|
*/
|
2015-04-22 12:18:18 +03:00
|
|
|
public function deleteFileKey($path, $keyId, $encryptionModuleId);
|
2015-01-14 22:39:23 +03:00
|
|
|
|
2015-03-27 13:46:32 +03:00
|
|
|
/**
|
|
|
|
* delete all file keys for a given file
|
|
|
|
*
|
|
|
|
* @param string $path to the file
|
2015-04-22 12:18:18 +03:00
|
|
|
*
|
2015-04-09 11:28:02 +03:00
|
|
|
* @return boolean False when the keys could not be deleted
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-03-27 13:46:32 +03:00
|
|
|
*/
|
2015-05-13 15:39:27 +03:00
|
|
|
public function deleteAllFileKeys($path);
|
2015-03-27 13:46:32 +03:00
|
|
|
|
2015-01-14 22:39:23 +03:00
|
|
|
/**
|
|
|
|
* delete system-wide encryption keys not related to a specific user,
|
|
|
|
* e.g something like a key for public link shares
|
|
|
|
*
|
|
|
|
* @param string $keyId id of the key
|
2015-04-22 12:18:18 +03:00
|
|
|
* @param string $encryptionModuleId
|
2015-01-14 22:39:23 +03:00
|
|
|
*
|
2015-04-09 11:28:02 +03:00
|
|
|
* @return boolean False when the key could not be deleted
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-14 22:39:23 +03:00
|
|
|
*/
|
2015-04-22 12:18:18 +03:00
|
|
|
public function deleteSystemUserKey($keyId, $encryptionModuleId);
|
2015-01-14 22:39:23 +03:00
|
|
|
|
2015-04-02 17:25:01 +03:00
|
|
|
/**
|
|
|
|
* copy keys if a file was renamed
|
|
|
|
*
|
|
|
|
* @param string $source
|
|
|
|
* @param string $target
|
2015-04-24 11:16:06 +03:00
|
|
|
* @return boolean
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-04-02 17:25:01 +03:00
|
|
|
*/
|
|
|
|
public function renameKeys($source, $target);
|
|
|
|
|
2015-03-31 14:25:35 +03:00
|
|
|
/**
|
|
|
|
* move keys if a file was renamed
|
|
|
|
*
|
|
|
|
* @param string $source
|
|
|
|
* @param string $target
|
2015-04-24 14:06:03 +03:00
|
|
|
* @return boolean
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-03-31 14:25:35 +03:00
|
|
|
*/
|
2015-04-02 17:25:01 +03:00
|
|
|
public function copyKeys($source, $target);
|
2015-03-31 14:25:35 +03:00
|
|
|
|
2017-01-02 23:24:37 +03:00
|
|
|
/**
|
|
|
|
* backup keys of a given encryption module
|
|
|
|
*
|
|
|
|
* @param string $encryptionModuleId
|
|
|
|
* @param string $purpose
|
|
|
|
* @param string $uid
|
|
|
|
* @return bool
|
|
|
|
* @since 12.0.0
|
|
|
|
*/
|
|
|
|
public function backupUserKeys($encryptionModuleId, $purpose, $uid);
|
2015-01-14 22:39:23 +03:00
|
|
|
}
|