aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain-API-Demo/src/org/openintents/openpgp/IOpenPgpCallback.aidl
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2013-10-02 19:08:33 +0200
committerDominik Schürmann <dominik@dominikschuermann.de>2013-10-02 19:08:33 +0200
commit2a0df5b75abc35978abbe669177662b4d66fbf18 (patch)
treed69198bf734255cb2d5229674554ee9d2b0e96bd /OpenPGP-Keychain-API-Demo/src/org/openintents/openpgp/IOpenPgpCallback.aidl
parent224faa42ac855776a8494decfcac9d23dbfcec09 (diff)
downloadopen-keychain-2a0df5b75abc35978abbe669177662b4d66fbf18.tar.gz
open-keychain-2a0df5b75abc35978abbe669177662b4d66fbf18.tar.bz2
open-keychain-2a0df5b75abc35978abbe669177662b4d66fbf18.zip
API update
Diffstat (limited to 'OpenPGP-Keychain-API-Demo/src/org/openintents/openpgp/IOpenPgpCallback.aidl')
-rw-r--r--OpenPGP-Keychain-API-Demo/src/org/openintents/openpgp/IOpenPgpCallback.aidl17
1 files changed, 15 insertions, 2 deletions
diff --git a/OpenPGP-Keychain-API-Demo/src/org/openintents/openpgp/IOpenPgpCallback.aidl b/OpenPGP-Keychain-API-Demo/src/org/openintents/openpgp/IOpenPgpCallback.aidl
index e0ac43d22..ca00c8ce1 100644
--- a/OpenPGP-Keychain-API-Demo/src/org/openintents/openpgp/IOpenPgpCallback.aidl
+++ b/OpenPGP-Keychain-API-Demo/src/org/openintents/openpgp/IOpenPgpCallback.aidl
@@ -22,10 +22,23 @@ import org.openintents.openpgp.OpenPgpError;
interface IOpenPgpCallback {
/**
- * CryptoSignatureResult is only returned if the Callback was used from decryptAndVerify
- *
+ * onSuccess returns on successful OpenPGP operations.
+ *
+ * @param outputBytes
+ * contains resulting output bytes (decrypted content (when input was encrypted)
+ * or content without signature (when input was signed-only))
+ * @param signatureResult
+ * signatureResult is only non-null if decryptAndVerify() was called and the content
+ * was encrypted or signed-and-encrypted.
*/
oneway void onSuccess(in byte[] outputBytes, in OpenPgpSignatureResult signatureResult);
+ /**
+ * onError returns on errors or when allowUserInteraction was set to false, but user interaction
+ * was required execute an OpenPGP operation.
+ *
+ * @param error
+ * See OpenPgpError class for more information.
+ */
oneway void onError(in OpenPgpError error);
} \ No newline at end of file