2012-04-17 22:56:53 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Test_Encryption extends UnitTestCase {
|
2012-09-07 17:22:01 +04:00
|
|
|
function testEncryption() {
|
2012-04-17 22:56:53 +04:00
|
|
|
$key=uniqid();
|
|
|
|
$file=OC::$SERVERROOT.'/3rdparty/MDB2.php';
|
|
|
|
$source=file_get_contents($file); //nice large text file
|
2012-11-02 22:53:02 +04:00
|
|
|
$encrypted=OC_Crypt::encrypt($source, $key);
|
|
|
|
$decrypted=OC_Crypt::decrypt($encrypted, $key);
|
2012-06-16 01:48:39 +04:00
|
|
|
$decrypted=rtrim($decrypted, "\0");
|
2012-11-02 22:53:02 +04:00
|
|
|
$this->assertNotEqual($encrypted, $source);
|
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-04-18 18:02:35 +04:00
|
|
|
|
2012-11-04 14:10:46 +04:00
|
|
|
$chunk=substr($source, 0, 8192);
|
2012-11-02 22:53:02 +04:00
|
|
|
$encrypted=OC_Crypt::encrypt($chunk, $key);
|
2012-10-24 00:53:54 +04:00
|
|
|
$this->assertEqual(strlen($chunk), strlen($encrypted));
|
2012-11-02 22:53:02 +04:00
|
|
|
$decrypted=OC_Crypt::decrypt($encrypted, $key);
|
2012-06-16 01:48:39 +04:00
|
|
|
$decrypted=rtrim($decrypted, "\0");
|
2012-11-02 22:53:02 +04:00
|
|
|
$this->assertEqual($decrypted, $chunk);
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-11-02 22:53:02 +04:00
|
|
|
$encrypted=OC_Crypt::blockEncrypt($source, $key);
|
|
|
|
$decrypted=OC_Crypt::blockDecrypt($encrypted, $key);
|
|
|
|
$this->assertNotEqual($encrypted, $source);
|
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-04-17 22:56:53 +04:00
|
|
|
|
2012-05-02 14:54:31 +04:00
|
|
|
$tmpFileEncrypted=OCP\Files::tmpFile();
|
2012-11-04 14:10:46 +04:00
|
|
|
OC_Crypt::encryptfile($file, $tmpFileEncrypted, $key);
|
2012-04-17 22:56:53 +04:00
|
|
|
$encrypted=file_get_contents($tmpFileEncrypted);
|
2012-11-02 22:53:02 +04:00
|
|
|
$decrypted=OC_Crypt::blockDecrypt($encrypted, $key);
|
|
|
|
$this->assertNotEqual($encrypted, $source);
|
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-04-17 22:56:53 +04:00
|
|
|
|
2012-05-02 14:54:31 +04:00
|
|
|
$tmpFileDecrypted=OCP\Files::tmpFile();
|
2012-11-04 14:10:46 +04:00
|
|
|
OC_Crypt::decryptfile($tmpFileEncrypted, $tmpFileDecrypted, $key);
|
2012-04-17 22:56:53 +04:00
|
|
|
$decrypted=file_get_contents($tmpFileDecrypted);
|
2012-11-02 22:53:02 +04:00
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-05-05 18:48:28 +04:00
|
|
|
|
|
|
|
$file=OC::$SERVERROOT.'/core/img/weather-clear.png';
|
|
|
|
$source=file_get_contents($file); //binary file
|
2012-11-02 22:53:02 +04:00
|
|
|
$encrypted=OC_Crypt::encrypt($source, $key);
|
|
|
|
$decrypted=OC_Crypt::decrypt($encrypted, $key);
|
2012-06-16 01:48:39 +04:00
|
|
|
$decrypted=rtrim($decrypted, "\0");
|
2012-11-02 22:53:02 +04:00
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-05-05 18:48:28 +04:00
|
|
|
|
2012-11-02 22:53:02 +04:00
|
|
|
$encrypted=OC_Crypt::blockEncrypt($source, $key);
|
|
|
|
$decrypted=OC_Crypt::blockDecrypt($encrypted, $key);
|
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-05-05 18:48:28 +04:00
|
|
|
|
2012-04-17 22:56:53 +04:00
|
|
|
}
|
2012-06-16 01:48:39 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
function testBinary() {
|
2012-06-16 01:48:39 +04:00
|
|
|
$key=uniqid();
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-06-16 01:48:39 +04:00
|
|
|
$file=__DIR__.'/binary';
|
|
|
|
$source=file_get_contents($file); //binary file
|
2012-11-02 22:53:02 +04:00
|
|
|
$encrypted=OC_Crypt::encrypt($source, $key);
|
|
|
|
$decrypted=OC_Crypt::decrypt($encrypted, $key);
|
2012-06-16 01:48:39 +04:00
|
|
|
|
|
|
|
$decrypted=rtrim($decrypted, "\0");
|
2012-11-02 22:53:02 +04:00
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-06-16 01:48:39 +04:00
|
|
|
|
2012-11-02 22:53:02 +04:00
|
|
|
$encrypted=OC_Crypt::blockEncrypt($source, $key);
|
|
|
|
$decrypted=OC_Crypt::blockDecrypt($encrypted, $key, strlen($source));
|
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-06-16 01:48:39 +04:00
|
|
|
}
|
2012-04-17 22:56:53 +04:00
|
|
|
}
|