aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/lib/util.php
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | replace == with === and replace != with !==Florin Peter2013-05-271-15/+15
| | | |
| * | | Merge branch 'master' into remove_unused_varsFlorin Peter2013-05-271-309/+396
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: apps/files_encryption/lib/util.php
| * | | | remove unused varaiblesBjörn Schießle2013-05-271-1/+1
| | | | |
* | | | | Merge branch 'master' into file_encryption_external_storage_fixesFlorin Peter2013-05-291-1/+1
|\ \ \ \ \ | | |_|_|/ | |/| | |
| * | | | fixed encryption session namespace to avoid problemsFlorin Peter2013-05-281-1/+1
| | |_|/ | |/| |
* | | | fix for share folder on external storageFlorin Peter2013-05-291-1/+19
| | | |
* | | | check list of users with access to the file from the bottom to the top. This ↵Björn Schießle2013-05-291-2/+2
| | | | | | | | | | | | | | | | way we avoid calling getFileInfo() on every dir, which creates a lot of overhead, especially for external storages
* | | | fixed if fopen returns false typically on external storageFlorin Peter2013-05-281-1/+1
|/ / /
* | | fix for undefined indexFlorin Peter2013-05-281-1/+1
| | |
* | | fix for losing private key while being logged in and accessing a public linkFlorin Peter2013-05-281-3/+1
| |/ |/|
* | Merge branch 'master' into file_encryption_util_is_errorFlorin Peter2013-05-271-27/+12
|\| | | | | | | | | Conflicts: apps/files_encryption/lib/util.php
| * fix first time encryption after app was enabledBjörn Schießle2013-05-241-23/+12
| |
* | added check by numRows()Florin Peter2013-05-271-335/+387
| | | | | | | | | | changed to public api where it was possible reformat code to comply with the coding guidelines
* | fixed error rising from fetchRowFlorin Peter2013-05-251-22/+27
| |
* | added OC_DB::isError and loggingFlorin Peter2013-05-251-2/+36
|/
* fixes after review from @DeepDiver1975Florin Peter2013-05-231-319/+282
|
* code clean up; nicer solution to solve the public link share problem if a ↵Björn Schießle2013-05-231-12/+1
| | | | user is logged in
* fix public link share if a user is logged inBjörn Schießle2013-05-231-1/+15
|
* fix pgsql errorFlorin Peter2013-05-221-2/+5
|
* fixed finding encrypted files in subfolders and removed unused codeFlorin Peter2013-05-221-35/+5
|
* key creation should never override a private or public keyFlorin Peter2013-05-201-1/+11
|
* reformat code added and changed phpdocFlorin Peter2013-05-201-612/+682
|
* changed database column 'recovery' to 'recovery_enabled' because recovery is ↵Florin Peter2013-05-191-5/+5
| | | | | | a pgsql keyword more info about pgsql keywords http://www.postgresql.org/docs/9.1/static/sql-keywords-appendix.html
* changed migrationStatus to migration_status for pgsqlFlorin Peter2013-05-181-3/+3
|
* fix migration to new encryptionBjörn Schießle2013-05-171-2/+1
|
* some typo fixedBjörn Schießle2013-05-171-3/+3
|
* gremove unused codeBjörn Schießle2013-05-171-54/+59
|
* Merge branch 'files_encryption' of github.com:owncloud/core into ↵Björn Schießle2013-05-171-2/+2
|\ | | | | | | files_encryption
| * fix for recover files in subfolderFlorin Peter2013-05-161-1/+1
| |
| * fix typo in addRecoveryKeysFlorin Peter2013-05-161-1/+1
| |
* | upgrade from old encryption to the new one needs to generate share keys tooBjörn Schießle2013-05-171-6/+9
|/
* allow admin to recover users files in case of password lostBjörn Schießle2013-05-161-2/+82
|
* fix for re-share and removed check if file exists because we are sometime ↵Florin Peter2013-05-161-13/+20
| | | | into a pre_put_contents hook
* add recovery key to all files if the user enabled the feature and removes ↵Björn Schießle2013-05-151-0/+34
| | | | them again on disable
* enable admin to change the recovery passwordBjörn Schießle2013-05-151-0/+28
|
* fix for Allowed memory size of xx bytes exhausted while reading big filesFlorin Peter2013-05-141-5/+12
|
* fix for public link shareFlorin Peter2013-05-141-1/+1
|
* added test for public shared file via linkFlorin Peter2013-05-141-1/+1
|
* added handling for public file access via files_sharing linkFlorin Peter2013-05-131-51/+93
|
* don't handle public share keys in lib/public/share.php but in ↵Björn Schießle2013-05-131-1/+8
| | | | apps/files_encryption/lib/util.php instead
* don't create a recovery user, only generate recovery key similar to the ↵Björn Schießle2013-05-131-2/+2
| | | | public link share key
* generate random key name for share key to avoid name conflictsBjörn Schießle2013-05-131-2/+7
|
* fix for webdavFlorin Peter2013-05-111-2/+2
|
* Improvements to code formatting & indentationSam Tuke2013-05-091-109/+114
|
* Implemented initial recoveryAdmin functionality in crypto file proxySam Tuke2013-05-091-3/+19
|
* Fixed bugs with pre_share hook usageSam Tuke2013-05-091-75/+101
| | | | Made sure new user being shared to is added to array of sharing users
* Added pre_share hookSam Tuke2013-05-081-5/+4
| | | | | Switched it for post_share hook in encryption hooks Stop a file from being shared if the encryption procedure fails for any users
* fix for wrong file infosFlorin Peter2013-05-071-3/+4
|
* handling for re-share and re-unshare should work nowFlorin Peter2013-05-051-2/+46
|
* Added support for user-specified password for adminRecovery account in admin ↵Sam Tuke2013-05-041-13/+96
| | | | | | | | | settings page Made encryptAll() (file migration for unencrypted + legacy encrypted files) run only on first login for each user (status stored in DB) Made recoveryAdmin user member of 'admin' user group automatically Set recoveryadmin settings to only display on user settings if enabled by an admin Updated encryption db xml schema