aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/thialfihar/android/apg/ApgService.java
Commit message (Collapse)AuthorAgeFilesLines
* renaming whole package to org.apg to simplifiy nameDominik2012-03-091-594/+0
|
* Allow to pass large blobs and a new content provider to simplify thisMarkus Doits2011-11-041-21/+97
| | | | | | | | | | | | | | | | | | | | | | | Since AIDL is not for passing large data, a blob can be passed to APG by a Uri. This Uri is opened as a file by APG and read/written to. Note the file is overwritten by APG, so make sure it is a copy if you want to keep the original. With the ApgServiceBlobProvider, Apg has an own ContentProvider that can be used like mentioned above. For now the data is stored in the dir where APG stores other files and NOT DELETED after en/decryption. This is tbd. It can only be accessed by an application with the permission "org.thialfihar.android.apg.permission.STORE_BLOBS". ApgCon has been updated accordingly and can handle blobs with `setBlob` and `getBlobResult`. That is a really easy way to en/decrypt large data. Note that encrypting by blob should only be used for large files (1MB+). On all other cases, the data should be passed as as String through the AIDl-Interface, so no temporary file must be created. See ApgCon for a complete example of how to connect to the AIDL and use it. Or use it in your own project!
* Cleanup of code, AIDL-calls renamed!Markus Doits2011-06-051-167/+153
|
* Possibility to not compile Log.d and Log.v inMarkus Doits2011-06-051-16/+18
|
* Dont remove result and warnings from resultMarkus Doits2011-01-231-0/+2
| | | | Some more debug output, too
* Allow to retrieve fingerprints and user ids through AIDLMarkus Doits2011-01-231-46/+102
| | | | | | Update ApgCon and doc accordingly. Not very tested.
* Don't query things we don't needMarkus Doits2011-01-231-12/+4
|
* Some more verbose logsMarkus Doits2011-01-201-0/+3
|
* Work on errors and documentation - once moreMarkus Doits2011-01-201-8/+12
|
* Some better (non-misleading) error msgsMarkus Doits2011-01-201-15/+17
| | | | Also some reindentation
* Redefine some log-msgesMarkus Doits2011-01-201-1/+2
|
* Print some info about keys on asymmetric encryptionMarkus Doits2011-01-201-2/+16
|
* Compare strings like they should be comparedMarkus Doits2011-01-181-4/+4
|
* 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.
* Allow to sign and specify passphrase on decryptingMarkus Doits2011-01-171-13/+35
|
* Add asymmetric encryptionMarkus Doits2011-01-131-77/+171
|
* 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.
* 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.
* 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
|
* Redesign AIDL-Interface once moreMarkus Doits2011-01-051-16/+87
| | | | | | | | 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).
* Add connection helper for other projectsMarkus Doits2011-01-041-12/+19
| | | | | 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
* Add first basic implementation of ApgserviceMarkus Doits2010-12-291-0/+76
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