aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Some better errors (hopefully more information)Markus Doits2011-01-201-19/+89
| | | | | | | | | | | | Some smaller fixes and some new functions/doc, too
| * | Fix wrong param in docMarkus Doits2011-01-201-1/+1
| | |
| * | Add javadoc on public thingsMarkus Doits2011-01-201-14/+320
| | | | | | | | | | | | Small other changes, too.
| * | Allow async execution of an AIDL callMarkus Doits2011-01-191-18/+141
| | | | | | | | | | | | | | | | | | | | | Calls can now be executed asyncronously. Callback methods are supported, too. See comments of "set_callback()". First tries with javadoc.
| * | Compare strings like they should be comparedMarkus Doits2011-01-181-4/+4
| | |
| * | Add another verbose hint for ApgCon constructorMarkus Doits2011-01-181-0/+1
| | |
| * | Print api_version if matchingMarkus Doits2011-01-181-0/+2
| | |
| * | Check for AIDL Api version and ApgServiceMarkus Doits2011-01-181-2/+33
| | | | | | | | | | | | | | | This prints out errors on console when APG cannot work with the help. It will initialize correctly, though.
| * | Add AIDL API versionMarkus Doits2011-01-181-0/+1
| | |
| * | Update AIDL to reflect new argument namesMarkus Doits2011-01-181-25/+45
| | | | | | | | | | | | | | | In addition redesign the comments a little bit. Still doesn't look good, but at least a bit better.
| * | More finegrained errorsMarkus Doits2011-01-181-11/+27
| | |
| * | Rename parametersMarkus Doits2011-01-181-33/+33
| | | | | | | | | | | | Writing them out should make them clearer
| * | Refactor some log priosMarkus Doits2011-01-181-10/+9
| | |
| * | Allow get_master_key to accept null stringMarkus Doits2011-01-171-0/+3
| | | | | | | | | | | | Return earlier on wrong length, too.
| * | Update AIDL-DocMarkus Doits2011-01-171-23/+26
| | |
| * | Allow to sign and specify passphrase on decryptingMarkus Doits2011-01-171-13/+35
| | |
| * | Update version information to reflect branchMarkus Doits2011-01-171-1/+1
| | |
| * | Clear result, tooMarkus Doits2011-01-131-0/+5
| | |
| * | Add asymmetric encryptionMarkus Doits2011-01-132-82/+186
| | |
| * | Prepare ApgCon for asymetric enc and clean upMarkus Doits2011-01-131-14/+43
| | |
| * | Actually check for unknown args for functionMarkus Doits2011-01-111-1/+4
| | |
| * | Redefine many internals of ApgServiceMarkus Doits2011-01-111-102/+168
| | | | | | | | | | | | | | | | | | | | | | | | This helps to add new function calls easily. Some of the new enums could be exported to other files to be included by other projects later on. Next step is asymmetric encryption.
| * | Prevent null pointer exceptionMarkus Doits2011-01-111-1/+1
| | | | | | | | | | | | Error-msg should be better, though.
| * | Make some things staticMarkus Doits2011-01-111-6/+36
| | | | | | | | | | | | | | | *Should* speed up encryption, or better: does not make encryption using AIDL slower than using APG directly.
| * | Allow helper to clear args and set booleansMarkus Doits2011-01-091-0/+8
| | |
| * | Explain AIDL options a little bit more in detailMarkus Doits2011-01-091-2/+10
| | |
| * | Document new args in AIDLMarkus Doits2011-01-091-3/+8
| | |
| * | Respect options but allow to overwrite them for each callMarkus Doits2011-01-091-15/+84
| | | | | | | | | | | | | | | By default the values set in APG's options are respected now. But they can be overwritten by special parameters passed through.
| * | Prefix local vars with "_"Markus Doits2011-01-091-15/+15
| | |
| * | Reset errors before calling, make some vars final, minor cleanupsMarkus Doits2011-01-091-10/+19
| | |
| * | Remove obsolete importMarkus Doits2011-01-091-1/+0
| | |
| * | Remove weird lineMarkus Doits2011-01-091-1/+0
| | |
| * | Redesign AIDL-Interface once moreMarkus Doits2011-01-053-38/+179
| | | | | | | | | | | | | | | | | | | | | | | | Using Bundles makes passing data easier and does not need to redefine the interface if the internel functions change. The helper class has been updated accordingly. In addition, it wrappes completely around all input and output (if wanted).
| * | Remove forgotten lineMarkus Doits2011-01-041-1/+0
| | |
| * | Add connection helper for other projectsMarkus Doits2011-01-043-14/+165
| | | | | | | | | | | | | | | This eases using the AIDL-Interface and is the recommended way for other project to implement the connection.
| * | Reload preferences on callMarkus Doits2010-12-301-3/+3
| | | | | | | | | | | | refs r326
| * | Allow to regenerate shared preferencesMarkus Doits2010-12-301-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I encountered a problem that changing preferences in APG did not change the preferences in ApgService after it was called once: 1. call getPreferences 2. change settings in APG 3. call getPreferences again --> the result at 3. was still having preferences from 1. To work around this, the function getPreferences has been updated to force the new generation of preferences while not breaking any other code relying on the old behaviour.
| * | Remove weird chars at the beginning of xmlMarkus Doits2010-12-291-1/+1
| | |
| * | Fix wrong placed backslashMarkus Doits2010-12-291-1/+1
| | |
| * | Merge trunk into apg_serviceMarkus Doits2010-12-292-50/+102
| | |
| * | Add first basic implementation of ApgserviceMarkus Doits2010-12-293-1/+87
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Provides an AIDL-API for other apps to encrypt and decrypt a string symmetrically with a passphrase. Function names and API is by no way finalized and will change! Support for asymetric encription will follow. For reference and discussion see issue #71, https://code.google.com/p/android-privacy-guard/issues/detail?id=71
| * | Branch for ApgService AIDL development until spec is finalMarkus Doits2010-12-270-0/+0
| | |
* | | @Override refactoring, some explicit casting addedOliver Runge2011-09-1724-101/+27
| | |
* | | added .gitignoreOliver Runge2011-09-171-0/+6
| |/ |/|
* | added Portuguese translation, thanks, Paulo AngeloThialfihar2011-09-112-0/+362
| |
* | upgraded to target android-13Thialfihar2011-09-111-1/+1
| |
* | applied proposed patch by mattispasch for issue 99Thialfihar2011-03-191-15/+26
| |
* | remove the null check for progress again, not needed in the trunk for nowThialfihar2011-02-051-96/+48
| |
* | don't include a Preference re-instantiation for now, will see about that ↵Thialfihar2011-02-051-6/+1
| | | | | | | | when merging apg_service
* | strings fixes in IT and NO versionThialfihar2011-02-052-2/+2
| |