2011-08-07 19:32:48 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
2012-07-11 20:51:27 +04:00
|
|
|
* @author Sam Tuke, Frank Karlitschek, Robin Appelman
|
|
|
|
* @copyright 2012 Sam Tuke samtuke@owncloud.com,
|
|
|
|
* Robin Appelman icewind@owncloud.com, Frank Karlitschek
|
|
|
|
* frank@owncloud.org
|
2011-08-07 19:32:48 +04:00
|
|
|
*
|
|
|
|
* 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-11 20:51:27 +04:00
|
|
|
namespace OCA_Encryption;
|
2011-08-07 19:32:48 +04:00
|
|
|
|
|
|
|
/**
|
2012-07-11 20:51:27 +04:00
|
|
|
* Class for common cryptography functionality
|
2011-08-07 19:32:48 +04:00
|
|
|
*/
|
2011-08-10 19:24:38 +04:00
|
|
|
|
2012-07-11 20:51:27 +04:00
|
|
|
class Crypt {
|
2012-06-16 01:48:39 +04:00
|
|
|
|
2012-07-11 20:51:27 +04:00
|
|
|
/**
|
|
|
|
* @brief Create a new encryption keypair
|
|
|
|
* @return array publicKey, privatekey
|
|
|
|
*/
|
|
|
|
public static function createKeypair() {
|
|
|
|
|
|
|
|
$res = openssl_pkey_new();
|
2012-05-31 15:25:07 +04:00
|
|
|
|
2012-07-11 20:51:27 +04:00
|
|
|
// Get private key
|
|
|
|
openssl_pkey_export( $res, $privateKey );
|
2011-08-11 19:49:36 +04:00
|
|
|
|
2012-07-11 20:51:27 +04:00
|
|
|
// Get public key
|
|
|
|
$publicKey = openssl_pkey_get_details( $res );
|
|
|
|
|
|
|
|
$publicKey = $publicKey['key'];
|
|
|
|
|
|
|
|
return( array( 'publicKey' => $publicKey, 'privateKey' => $privateKey ) );
|
|
|
|
|
2011-11-24 04:44:54 +04:00
|
|
|
}
|
2012-07-11 20:51:27 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Symmetrically encrypt a file
|
|
|
|
* @returns encrypted file
|
|
|
|
*/
|
|
|
|
public static function encrypt( $plainContent, $iv, $passphrase = '' ) {
|
|
|
|
|
2012-07-17 22:15:59 +04:00
|
|
|
if ( $encryptedContent = openssl_encrypt( $plainContent, 'AES-128-CFB', $passphrase, false, $iv ) ) {
|
2012-07-11 20:51:27 +04:00
|
|
|
|
|
|
|
return $encryptedContent;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2012-07-17 22:15:59 +04:00
|
|
|
\OC_Log::write( 'Encrypted storage', 'Encryption (symmetric) of content failed' , \OC_Log::ERROR );
|
2012-07-11 20:51:27 +04:00
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-08-11 19:49:36 +04:00
|
|
|
}
|
2012-07-11 20:51:27 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Symmetrically decrypt a file
|
|
|
|
* @returns decrypted file
|
|
|
|
*/
|
|
|
|
public static function decrypt( $encryptedContent, $iv, $passphrase ) {
|
|
|
|
|
2012-07-17 22:15:59 +04:00
|
|
|
if ( $plainContent = openssl_decrypt( $encryptedContent, 'AES-128-CFB', $passphrase, false, $iv ) ) {
|
2012-07-11 20:51:27 +04:00
|
|
|
|
|
|
|
return $plainContent;
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2012-07-17 22:15:59 +04:00
|
|
|
\OC_Log::write( 'Encrypted storage', 'Decryption (symmetric) of content failed' , \OC_Log::ERROR );
|
2012-07-11 20:51:27 +04:00
|
|
|
|
|
|
|
return false;
|
|
|
|
|
2011-08-11 19:49:36 +04:00
|
|
|
}
|
2012-07-11 20:51:27 +04:00
|
|
|
|
2011-08-10 19:24:38 +04:00
|
|
|
}
|
2012-07-11 20:51:27 +04:00
|
|
|
|
|
|
|
/**
|
2012-07-17 22:15:59 +04:00
|
|
|
* @brief Creates symmetric keyfile content
|
|
|
|
* @param $plainContent content to be encrypted in keyfile
|
|
|
|
* @returns encrypted content combined with IV
|
|
|
|
* @note IV need not be specified, as it will be stored in the returned keyfile
|
|
|
|
* and remain accessible therein.
|
2012-07-11 20:51:27 +04:00
|
|
|
*/
|
2012-07-17 22:15:59 +04:00
|
|
|
public static function symmetricEncryptFileContent( $plainContent, $passphrase = '' ) {
|
2012-07-11 20:51:27 +04:00
|
|
|
|
2012-07-17 22:15:59 +04:00
|
|
|
if ( !$plainContent ) {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$random = openssl_random_pseudo_bytes( 13 );
|
2012-07-11 20:51:27 +04:00
|
|
|
|
2012-07-17 22:15:59 +04:00
|
|
|
$iv = substr( base64_encode( $random ), 0, -4 );
|
2012-07-11 20:51:27 +04:00
|
|
|
|
2012-07-17 22:15:59 +04:00
|
|
|
if ( $encryptedContent = self::encrypt( $plainContent, $iv, $passphrase ) ) {
|
|
|
|
|
|
|
|
$combinedKeyfile = $encryptedContent .= $iv;
|
|
|
|
|
|
|
|
return $combinedKeyfile;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
\OC_Log::write( 'Encrypted storage', 'Encryption (symmetric) of keyfile content failed' , \OC_Log::ERROR );
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
2011-08-10 19:24:38 +04:00
|
|
|
}
|
2012-07-17 22:15:59 +04:00
|
|
|
|
2011-08-10 19:24:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-17 22:56:53 +04:00
|
|
|
/**
|
2012-07-17 22:15:59 +04:00
|
|
|
* @brief Decrypts keyfile content
|
2012-07-11 20:51:27 +04:00
|
|
|
* @param string $source
|
|
|
|
* @param string $target
|
|
|
|
* @param string $key the decryption key
|
|
|
|
*
|
|
|
|
* This function decrypts a file
|
|
|
|
*/
|
2012-07-17 22:15:59 +04:00
|
|
|
public static function symmetricDecryptFileContent( $keyfileContent, $passphrase = '' ) {
|
2011-10-21 19:02:11 +04:00
|
|
|
|
2012-07-17 22:15:59 +04:00
|
|
|
if ( !$keyfileContent ) {
|
2012-07-11 20:51:27 +04:00
|
|
|
|
2012-07-17 22:15:59 +04:00
|
|
|
return false;
|
2012-07-11 20:51:27 +04:00
|
|
|
|
2011-10-21 19:02:11 +04:00
|
|
|
}
|
2012-07-11 20:51:27 +04:00
|
|
|
|
2012-07-17 22:15:59 +04:00
|
|
|
$iv = substr( $keyfileContent, -16 );
|
2012-07-11 20:51:27 +04:00
|
|
|
|
2012-07-17 22:15:59 +04:00
|
|
|
$encryptedContent = substr( $keyfileContent, 0, -16 );
|
2012-07-11 20:51:27 +04:00
|
|
|
|
2012-07-17 22:15:59 +04:00
|
|
|
if ( $plainContent = self::decrypt( $encryptedContent, $iv, $passphrase ) ) {
|
2012-07-11 20:51:27 +04:00
|
|
|
|
2012-07-17 22:15:59 +04:00
|
|
|
return $plainContent;
|
2012-07-11 20:51:27 +04:00
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2012-07-17 22:15:59 +04:00
|
|
|
\OC_Log::write( 'Encrypted storage', 'Decryption (symmetric) of keyfile content failed' , \OC_Log::ERROR );
|
|
|
|
|
|
|
|
return false;
|
2012-07-11 20:51:27 +04:00
|
|
|
|
2012-06-21 19:37:53 +04:00
|
|
|
}
|
2012-07-17 22:15:59 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Asymetrically encrypt a file using a public key
|
|
|
|
* @returns encrypted file
|
|
|
|
*/
|
|
|
|
public static function keyEncrypt( $plainContent, $publicKey ) {
|
|
|
|
|
|
|
|
openssl_public_encrypt( $plainContent, $encryptedContent, $publicKey );
|
|
|
|
|
|
|
|
return $encryptedContent;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Asymetrically decrypt a file using a private key
|
|
|
|
* @returns decrypted file
|
|
|
|
*/
|
|
|
|
public static function keyDecrypt( $encryptedContent, $privatekey ) {
|
|
|
|
|
|
|
|
openssl_private_decrypt( $encryptedContent, $plainContent, $privatekey );
|
|
|
|
|
|
|
|
return $plainContent;
|
|
|
|
|
2011-10-21 19:02:11 +04:00
|
|
|
}
|
2012-07-11 20:51:27 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Generate a random key for symmetric encryption
|
|
|
|
* @returns $key Generated key
|
|
|
|
*/
|
|
|
|
public static function generateKey() {
|
|
|
|
|
|
|
|
$key = mt_rand( 10000, 99999 ) . mt_rand( 10000, 99999 ) . mt_rand( 10000, 99999 ) . mt_rand( 10000, 99999 );
|
|
|
|
|
|
|
|
return $key;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function changekeypasscode($oldPassword, $newPassword) {
|
|
|
|
if(OCP\User::isLoggedIn()){
|
|
|
|
$username=OCP\USER::getUser();
|
|
|
|
$view=new OC_FilesystemView('/'.$username);
|
|
|
|
|
|
|
|
// read old key
|
|
|
|
$key=$view->file_get_contents('/encryption.key');
|
|
|
|
|
|
|
|
// decrypt key with old passcode
|
|
|
|
$key=OC_Crypt::decrypt($key, $oldPassword);
|
|
|
|
|
|
|
|
// encrypt again with new passcode
|
|
|
|
$key=OC_Crypt::encrypt($key, $newPassword);
|
|
|
|
|
|
|
|
// store the new key
|
|
|
|
$view->file_put_contents('/encryption.key', $key );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-07 19:32:48 +04:00
|
|
|
}
|
2012-07-11 20:51:27 +04:00
|
|
|
|
|
|
|
?>
|