Add connection helper for other projects

This eases using the AIDL-Interface and is the recommended way for other
project to implement the connection.
This commit is contained in:
Markus Doits
2011-01-04 23:08:08 +00:00
parent 2660c561a1
commit 6477f60764
3 changed files with 165 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
package org.thialfihar.android.apg;
interface IApgService {
String encrypt_with_passphrase(String msg, String passphrase);
String decrypt_with_passphrase(String encrypted_msg, String passphrase);
String encrypt_with_passphrase(in List<String> params);
String decrypt_with_passphrase(in List<String> params);
}