2012-04-17 18:56:53 +00: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 13:22:01 +00:00
|
|
|
function testEncryption() {
|
2012-04-17 18:56:53 +00:00
|
|
|
$key=uniqid();
|
|
|
|
$file=OC::$SERVERROOT.'/3rdparty/MDB2.php';
|
|
|
|
$source=file_get_contents($file); //nice large text file
|
2012-11-02 18:53:02 +00:00
|
|
|
$encrypted=OC_Crypt::encrypt($source, $key);
|
|
|
|
$decrypted=OC_Crypt::decrypt($encrypted, $key);
|
2012-06-15 21:48:39 +00:00
|
|
|
$decrypted=rtrim($decrypted, "\0");
|
2012-11-02 18:53:02 +00:00
|
|
|
$this->assertNotEqual($encrypted, $source);
|
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-04-18 14:02:35 +00:00
|
|
|
|
2012-11-04 10:10:46 +00:00
|
|
|
$chunk=substr($source, 0, 8192);
|
2012-11-02 18:53:02 +00:00
|
|
|
$encrypted=OC_Crypt::encrypt($chunk, $key);
|
2012-10-23 20:53:54 +00:00
|
|
|
$this->assertEqual(strlen($chunk), strlen($encrypted));
|
2012-11-02 18:53:02 +00:00
|
|
|
$decrypted=OC_Crypt::decrypt($encrypted, $key);
|
2012-06-15 21:48:39 +00:00
|
|
|
$decrypted=rtrim($decrypted, "\0");
|
2012-11-02 18:53:02 +00:00
|
|
|
$this->assertEqual($decrypted, $chunk);
|
2012-08-29 06:42:49 +00:00
|
|
|
|
2012-11-02 18:53:02 +00:00
|
|
|
$encrypted=OC_Crypt::blockEncrypt($source, $key);
|
|
|
|
$decrypted=OC_Crypt::blockDecrypt($encrypted, $key);
|
|
|
|
$this->assertNotEqual($encrypted, $source);
|
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-04-17 18:56:53 +00:00
|
|
|
|
2012-05-02 10:54:31 +00:00
|
|
|
$tmpFileEncrypted=OCP\Files::tmpFile();
|
2012-11-04 10:10:46 +00:00
|
|
|
OC_Crypt::encryptfile($file, $tmpFileEncrypted, $key);
|
2012-04-17 18:56:53 +00:00
|
|
|
$encrypted=file_get_contents($tmpFileEncrypted);
|
2012-11-02 18:53:02 +00:00
|
|
|
$decrypted=OC_Crypt::blockDecrypt($encrypted, $key);
|
|
|
|
$this->assertNotEqual($encrypted, $source);
|
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-04-17 18:56:53 +00:00
|
|
|
|
2012-05-02 10:54:31 +00:00
|
|
|
$tmpFileDecrypted=OCP\Files::tmpFile();
|
2012-11-04 10:10:46 +00:00
|
|
|
OC_Crypt::decryptfile($tmpFileEncrypted, $tmpFileDecrypted, $key);
|
2012-04-17 18:56:53 +00:00
|
|
|
$decrypted=file_get_contents($tmpFileDecrypted);
|
2012-11-02 18:53:02 +00:00
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-05-05 14:48:28 +00:00
|
|
|
|
|
|
|
$file=OC::$SERVERROOT.'/core/img/weather-clear.png';
|
|
|
|
$source=file_get_contents($file); //binary file
|
2012-11-02 18:53:02 +00:00
|
|
|
$encrypted=OC_Crypt::encrypt($source, $key);
|
|
|
|
$decrypted=OC_Crypt::decrypt($encrypted, $key);
|
2012-06-15 21:48:39 +00:00
|
|
|
$decrypted=rtrim($decrypted, "\0");
|
2012-11-02 18:53:02 +00:00
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-05-05 14:48:28 +00:00
|
|
|
|
2012-11-02 18:53:02 +00:00
|
|
|
$encrypted=OC_Crypt::blockEncrypt($source, $key);
|
|
|
|
$decrypted=OC_Crypt::blockDecrypt($encrypted, $key);
|
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-05-05 14:48:28 +00:00
|
|
|
|
2012-04-17 18:56:53 +00:00
|
|
|
}
|
2012-06-15 21:48:39 +00:00
|
|
|
|
2012-09-07 13:22:01 +00:00
|
|
|
function testBinary() {
|
2012-06-15 21:48:39 +00:00
|
|
|
$key=uniqid();
|
2012-08-29 06:42:49 +00:00
|
|
|
|
2012-06-15 21:48:39 +00:00
|
|
|
$file=__DIR__.'/binary';
|
|
|
|
$source=file_get_contents($file); //binary file
|
2012-11-02 18:53:02 +00:00
|
|
|
$encrypted=OC_Crypt::encrypt($source, $key);
|
|
|
|
$decrypted=OC_Crypt::decrypt($encrypted, $key);
|
2012-06-15 21:48:39 +00:00
|
|
|
|
|
|
|
$decrypted=rtrim($decrypted, "\0");
|
2012-11-02 18:53:02 +00:00
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-06-15 21:48:39 +00:00
|
|
|
|
2012-11-02 18:53:02 +00:00
|
|
|
$encrypted=OC_Crypt::blockEncrypt($source, $key);
|
|
|
|
$decrypted=OC_Crypt::blockDecrypt($encrypted, $key, strlen($source));
|
|
|
|
$this->assertEqual($decrypted, $source);
|
2012-06-15 21:48:39 +00:00
|
|
|
}
|
2012-04-17 18:56:53 +00:00
|
|
|
}
|