From e8d29c01c286f24f660f6d1c55f896c7bc0994c9 Mon Sep 17 00:00:00 2001 From: Markus Doits Date: Wed, 29 Dec 2010 16:31:58 +0000 Subject: Add first basic implementation of Apgservice 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 --- AndroidManifest.xml | 6 +- src/org/thialfihar/android/apg/ApgService.java | 76 +++++++++++++++++++++++++ src/org/thialfihar/android/apg/IApgService.aidl | 6 ++ 3 files changed, 87 insertions(+), 1 deletion(-) create mode 100644 src/org/thialfihar/android/apg/ApgService.java create mode 100644 src/org/thialfihar/android/apg/IApgService.aidl diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 47197a129..0ece93e55 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -195,7 +195,11 @@ android:configChanges="keyboardHidden|orientation|keyboard"/> - + + + + +