2012-07-25 19:51:48 +04:00
|
|
|
<?php
|
|
|
|
/***
|
2012-07-25 18:59:55 +04:00
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Bjoern Schiessle
|
|
|
|
* @copyright 2012 Bjoern Schiessle <schiessle@owncloud.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* 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 along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2012-07-25 19:51:48 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA_Encryption;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class provides basic operations to read/write encryption keys from/to the filesystem
|
|
|
|
*/
|
|
|
|
class Keymanager {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief retrieve private key from a user
|
|
|
|
*
|
|
|
|
* @param string user name
|
|
|
|
* @return string private key or false
|
|
|
|
*/
|
2012-07-25 19:56:52 +04:00
|
|
|
public static function getPrivateKey( $user ) {
|
|
|
|
|
|
|
|
$view = new \OC_FilesystemView( '/' . $user . '/' . 'files_encryption' . '/' );
|
|
|
|
|
|
|
|
return $view->file_get_contents( $user.'.private.key' );
|
2012-07-25 19:51:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-07-25 18:59:55 +04:00
|
|
|
* @brief retrieve public key from a user
|
|
|
|
*
|
|
|
|
* @param string user name
|
|
|
|
* @return string private key or false
|
|
|
|
*/
|
|
|
|
public static function getPublicKey($user) {
|
2012-07-26 15:49:22 +04:00
|
|
|
$view = new \OC_FilesystemView( '/public-keys/' );
|
2012-07-25 18:59:55 +04:00
|
|
|
return $view->file_get_contents($user.'.public.key');
|
2012-07-25 19:51:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-07-25 18:59:55 +04:00
|
|
|
* @brief retrieve file encryption key
|
|
|
|
*
|
2012-07-25 19:51:48 +04:00
|
|
|
* @param string file name
|
|
|
|
* @param string user name of the file owner
|
2012-07-25 18:59:55 +04:00
|
|
|
* @return string file key or false
|
|
|
|
*/
|
|
|
|
public static function getFileKey($user, $file) {
|
2012-07-26 15:49:22 +04:00
|
|
|
$view = new \OC_FilesystemView('/'.$user.'/files_encryption/keyfiles/');
|
2012-07-25 18:59:55 +04:00
|
|
|
return $view->file_get_contents($file.'.key');
|
2012-07-25 19:51:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-07-25 18:59:55 +04:00
|
|
|
* @brief store private key from a user
|
|
|
|
*
|
2012-07-25 19:51:48 +04:00
|
|
|
* @param string user name
|
2012-07-25 18:59:55 +04:00
|
|
|
* @param string key
|
|
|
|
* @return bool true/false
|
2012-07-25 19:51:48 +04:00
|
|
|
*/
|
2012-07-25 18:59:55 +04:00
|
|
|
public static function setPrivateKey($user, $key) {
|
2012-07-26 15:49:22 +04:00
|
|
|
$view = new \OC_FilesystemView('/'.$user.'/files_encryption/');
|
2012-07-25 18:59:55 +04:00
|
|
|
return $view->file_put_contents($user.'.private.key', $key);
|
2012-07-25 19:51:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2012-07-25 18:59:55 +04:00
|
|
|
* @brief store public key from a user
|
|
|
|
*
|
|
|
|
* @param string user name
|
|
|
|
* @param string key
|
|
|
|
* @return bool true/false
|
2012-07-25 19:51:48 +04:00
|
|
|
*/
|
|
|
|
public static function setPublicKey($user, $key) {
|
2012-07-26 15:49:22 +04:00
|
|
|
$view = new \OC_FilesystemView('/public-keys/');
|
2012-07-25 18:59:55 +04:00
|
|
|
return $view->file_put_contents($user.'.public.key', $key);
|
|
|
|
}
|
2012-07-25 19:51:48 +04:00
|
|
|
|
|
|
|
/**
|
2012-07-25 18:59:55 +04:00
|
|
|
* @brief store file encryption key
|
2012-07-25 19:51:48 +04:00
|
|
|
*
|
|
|
|
* @param string user name of the file owner
|
2012-07-25 18:59:55 +04:00
|
|
|
* @param string file name
|
|
|
|
* @param string key
|
|
|
|
* @return bool true/false
|
|
|
|
*/
|
2012-07-25 19:51:48 +04:00
|
|
|
public static function setFileKey($user, $file, $key) {
|
2012-07-26 15:49:22 +04:00
|
|
|
$view = new \OC_FilesystemView('/'.$user.'/files_encryption/keyfiles/');
|
2012-07-25 18:59:55 +04:00
|
|
|
return $view->file_put_contents($file.'.key', $key);
|
|
|
|
|
2012-07-25 19:51:48 +04:00
|
|
|
}
|
|
|
|
|
2012-07-25 18:59:55 +04:00
|
|
|
}
|