aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/tests/crypt.php
Commit message (Collapse)AuthorAgeFilesLines
* remove old encryption appBjoern Schiessle2015-04-071-678/+0
|
* Update license headersJenkins for ownCloud2015-03-261-5/+25
|
* Revert "Updating license headers"Morris Jobke2015-02-261-26/+6
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-6/+26
|
* first step to drop \OCP\Config:: in favour of IConfigMorris Jobke2014-12-171-7/+12
|
* Correctly namespace encryption testsJoas Schilling2014-12-091-27/+27
|
* Use self:: instead of the class name in encryption testsJoas Schilling2014-12-091-5/+5
|
* Update OCA\Encryption to OCA\Files_Encryption in the encryption app itselfJoas Schilling2014-12-091-21/+21
|
* upgrade to new folder structureBjoern Schiessle2014-12-021-22/+0
|
* new folder structure for keysBjoern Schiessle2014-11-261-16/+0
| | | | | | all keys are now in files_encryption/key/path_to_file/filename/ share keys are named: user.shareKey file key is named: fileKey
* Fix single run of encryption tests and usages of uniqid() and fopen()Joas Schilling2014-11-171-42/+51
|
* remove unnecessary require calls - the ownCloud class loader is supposed to ↵Thomas Müller2014-10-301-10/+0
| | | | take care of this
* make tests compatible with hook based skeleton generationJörn Friedrich Dreyer2014-10-201-0/+8
|
* login as user1 before performing a testBjoern Schiessle2014-08-151-1/+1
|
* add unit test for aes256/aes128Bjoern Schiessle2014-07-231-0/+160
|
* update existing unit testsBjoern Schiessle2014-07-231-120/+9
|
* check that the file proxies are enabled after each testBjoern Schiessle2014-07-171-0/+2
|
* remove pointless require of Blowfish.phpThomas Müller2014-07-101-1/+0
|
* Kill legacy encryption migrationThomas Müller2014-07-081-42/+0
|
* use phpseclib from 3rdpartyThomas Müller2014-06-031-1/+1
| | | | rename class Crypt_Blowfish to Legacy_Crypt_Blowfish
* Remove all occurences of @brief and @returns from PHPDocMorris Jobke2014-05-191-5/+5
| | | | * test case added to avoid adding them later
* Fix PHPDoc in /appsRobin McCorkell2014-05-161-1/+1
|
* remove legacy aka deprecated code: OC_FilesystemViewThomas Müller2014-05-121-4/+4
|
* polish documentation based on scrutinizer patchesJörn Friedrich Dreyer2014-02-061-1/+1
|
* Replaced time() with uniqid() to make sure the file name is uniqueVincent Petry2014-01-211-17/+17
| | | | | | | | | The cache isn't cleared properly because unlink() doesn't remove the cache entry which caused side-effects when reusing the same file name (which randomly happens when time() returns the same value) This fix first makes sure the unit tests don't fail any more. The unlink() case with the cache will be investigated separately.
* some small changes according to the review commentsBjoern Schiessle2013-11-271-2/+2
|
* adapt tests to the new codeBjoern Schiessle2013-11-201-9/+13
|
* Merge pull request #4537 from owncloud/no-realpathThomas Müller2013-08-221-15/+15
|\ | | | | Do not use realpath() on includes.
| * Use __DIR__ instead of dirname(__FILE__).Andreas Fischer2013-08-211-15/+15
| | | | | | | | This is possible because we require PHP 5.3 or higher.
| * Also remove other unnecessary realpath() calls.Andreas Fischer2013-08-211-5/+5
| |
| * Do not use realpath() on includes.Andreas Fischer2013-08-211-10/+10
| | | | | | | | | | | | | | If the file does not exist, realpath() returns false and "include false;" produces "Failed opening '' for inclusion" which is a useless error message. 'include' works just fine with symlinks, "./" and "../".
* | Merge branch 'master' into decrypt_files_againBjoern Schiessle2013-08-171-230/+28
|\| | | | | | | | | Conflicts: apps/files_encryption/tests/keymanager.php
| * fixing typos and PHPDocThomas Müller2013-08-081-3/+4
| |
| * adapt tests to the changes in crypt.phpBjoern Schiessle2013-08-081-230/+27
| |
* | adapt unit tests to the modified stream wrapperBjoern Schiessle2013-07-301-18/+18
|/
* Merge branch 'master' into files_encryption_check_private_keyBjörn Schießle2013-06-131-18/+0
|\ | | | | | | | | | | Conflicts: apps/files_encryption/appinfo/app.php apps/files_encryption/lib/util.php
| * LegacyKeyRecryptKeyfileEncrypt() no longer exists, so test can be removedBjörn Schießle2013-06-131-18/+0
| |
* | Merge branch 'master' into files_encryption_check_private_keyBjörn Schießle2013-06-111-0/+68
|\| | | | | | | | | Conflicts: apps/files_encryption/tests/crypt.php
| * add timeouts 3/30/90 to phpunit testsJörn Friedrich Dreyer2013-06-101-0/+67
| |
* | reformat codeFlorin Peter2013-06-031-2/+1
| |
* | use generated private key fro m setUp()Björn Schießle2013-06-031-4/+2
| |
* | added test for decryptPrivateKey()Björn Schießle2013-06-031-0/+18
|/
* Merge branch 'master' into remove_unused_varsFlorin Peter2013-05-291-2/+2
|\ | | | | | | | | | | | | | | Conflicts: apps/files_encryption/hooks/hooks.php apps/files_encryption/lib/proxy.php apps/files_encryption/lib/session.php apps/files_encryption/lib/stream.php
| * fixed encryption session namespace to avoid problemsFlorin Peter2013-05-281-2/+2
| |
* | Merge branch 'master' into remove_unused_varsBjörn Schießle2013-05-271-3/+3
|\| | | | | | | | | | | | | Conflicts: apps/files_encryption/hooks/hooks.php apps/files_encryption/lib/crypt.php apps/files_encryption/lib/proxy.php
| * make legacyDecrypt() private als always call legacyBlockDecrypt() from other ↵Björn Schießle2013-05-271-3/+3
| | | | | | | | classes
* | fix tests, after unused variables are removedBjörn Schießle2013-05-271-1/+1
|/
* added users for testsFlorin Peter2013-05-261-229/+230
| | | | reformat code to meet coding guidelines
* improved testFlorin Peter2013-05-261-289/+264
| | | | | | - fixed testPermanentDeleteFile sometimes failed - speed optimization - reformat code
* improved testsFlorin Peter2013-05-221-88/+1
|