summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexJenkins for ownCloud2014-12-082-0/+2
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-12-078-0/+8
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-12-0614-0/+14
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-12-0574-82/+14
|
* update error messageBjoern Schiessle2014-12-041-1/+1
|
* OC8 and later requires PHP >= 5.4, so we can remove the check from the ↵Bjoern Schiessle2014-12-041-5/+1
| | | | encryption app
* fix typoBjoern Schiessle2014-12-031-1/+1
|
* small fixesBjoern Schiessle2014-12-021-2/+2
|
* delete old keys if file was moved to a different mount pointBjoern Schiessle2014-12-021-4/+10
|
* upgrade to new folder structureBjoern Schiessle2014-12-0218-341/+483
|
* change private/public key names for consistency reasonsBjoern Schiessle2014-11-2611-226/+202
|
* harmonize copyright noticeBjoern Schiessle2014-11-267-18/+28
|
* new folder structure for keysBjoern Schiessle2014-11-2614-1010/+497
| | | | | | all keys are now in files_encryption/key/path_to_file/filename/ share keys are named: user.shareKey file key is named: fileKey
* Merge pull request #12421 from ↵Morris Jobke2014-11-262-12/+12
|\ | | | | | | | | owncloud/issue/6101-remove-namespace-permission-constants Issue/6101 remove namespace permission constants
| * Replace deprecated constant with new class constantJoas Schilling2014-11-252-12/+12
| |
* | replace \OC:: with \OC::->getSession()Bjoern Schiessle2014-11-251-2/+2
| |
* | don't store private public-share-key in sessionBjoern Schiessle2014-11-251-17/+10
| |
* | remove unused variableBjoern Schiessle2014-11-251-1/+0
|/
* use login name to verify passwordBjoern Schiessle2014-11-241-1/+2
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-11-222-2/+4
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-11-212-0/+64
|
* Fix file upload to ext storage when recovery key is enabledVincent Petry2014-11-202-9/+58
| | | | | | | | Fixes an issue when uploading files to external storage when recovery keys are enabled The Util class only works with real users, so instantiating it with the virtual recovery key user or public key user can cause issues.
* Merge pull request #12325 from owncloud/removeunneccessarylangLukas Reschke2014-11-202-64/+0
|\ | | | | cleanup languages. closes #11274
| * cleanup languages. closes #11274Volkan Gezer2014-11-202-64/+0
| |
* | Make apps/ extend the \Test\TestCase and fix overwritten methodsJoas Schilling2014-11-191-3/+7
|/
* Merge pull request #11696 from owncloud/addWarningToEncryptionLostPasswordLukas Reschke2014-11-193-0/+26
|\ | | | | Warn for password reset when files_encryption is enabled
| * listen to the post_passwordReset hook, backup the old keys and create a new ↵Bjoern Schiessle2014-11-173-0/+26
| | | | | | | | key pair for the user
* | [tx-robot] updated from transifexJenkins for ownCloud2014-11-182-0/+16
|/
* Merge pull request #12218 from owncloud/issue/10991-fixesMorris Jobke2014-11-1712-259/+383
|\ | | | | Issue/10991 Make unit tests pass on windows
| * Fix single run of encryption tests and usages of uniqid() and fopen()Joas Schilling2014-11-1712-259/+376
| |
| * Skip some more tests on Windows which just can not work at allJoas Schilling2014-11-171-0/+7
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-11-172-14/+20
| |
* | Merge pull request #9177 from owncloud/jsdocexperimentVincent Petry2014-11-131-0/+4
|\ \ | | | | | | Improved JS Docs + added build script for JS Docs
| * | Improved Javascript docs for JSDocVincent Petry2014-10-311-0/+4
| | | | | | | | | | | | | | | | | | Added namespaces so that JSDoc can find them. Fixed a few warnings. Improved some comments.
* | | [tx-robot] updated from transifexJenkins for ownCloud2014-11-132-6/+6
| | |
* | | [tx-robot] updated from transifexJenkins for ownCloud2014-11-128-2/+20
| | |
* | | [tx-robot] updated from transifexJenkins for ownCloud2014-11-112-4/+4
| | |
* | | Merge pull request #12027 from owncloud/cleanup_exceptionsVincent Petry2014-11-108-93/+155
|\ \ \ | | | | | | | | [encryption] clean up encryption exceptions
| * | | clean up encryption exceptionsBjoern Schiessle2014-11-078-93/+155
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2014-11-104-0/+8
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2014-11-0910-6/+36
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2014-11-0818-4/+56
| | | |
* | | | only set the values we need and make sure that we write the file info for bothBjoern Schiessle2014-11-071-3/+7
| | | | | | | | | | | | | | | | | | | | the real file and the part file, because some information from the part file might be needed later
* | | | also try to get file info from part fileBjoern Schiessle2014-11-071-2/+2
|/ / /
* | | Merge pull request #11954 from ↵Lukas Reschke2014-11-074-2/+15
|\ \ \ | | | | | | | | | | | | | | | | owncloud/enc_stop_uploading_if_private_key_is_missing Enc stop uploading if private key is missing
| * | | throw exception if private key is missingBjoern Schiessle2014-11-053-0/+14
| | | |
| * | | still try to encrypt files, even if the session is not initialized. The ↵Bjoern Schiessle2014-11-041-2/+1
| |/ / | | | | | | | | | stream wrapper will throw an error which is better than silently continue.
* | | [tx-robot] updated from transifexJenkins for ownCloud2014-11-0780-80/+0
| | |
* | | check if the provided password is really the current log-in passwordBjoern Schiessle2014-11-061-1/+15
| |/ |/|
* | [tx-robot] updated from transifexJenkins for ownCloud2014-11-052-0/+12
|/