diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2013-09-16 16:24:11 +0200 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2013-09-16 16:24:11 +0200 |
commit | 0ef8663422d3db4618f7d2c350ff00c6b76be093 (patch) | |
tree | 8986d04e42c9f8686568f70f714cae16e03f4c97 /OpenPGP-Keychain | |
parent | 168432abab88d6572da0057b9de637c6eeeb3523 (diff) | |
download | open-keychain-0ef8663422d3db4618f7d2c350ff00c6b76be093.tar.gz open-keychain-0ef8663422d3db4618f7d2c350ff00c6b76be093.tar.bz2 open-keychain-0ef8663422d3db4618f7d2c350ff00c6b76be093.zip |
API documentation
Diffstat (limited to 'OpenPGP-Keychain')
-rw-r--r-- | OpenPGP-Keychain/src/org/openintents/openpgp/IOpenPgpService.aidl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenPGP-Keychain/src/org/openintents/openpgp/IOpenPgpService.aidl b/OpenPGP-Keychain/src/org/openintents/openpgp/IOpenPgpService.aidl index 87e2df537..a6705c01b 100644 --- a/OpenPGP-Keychain/src/org/openintents/openpgp/IOpenPgpService.aidl +++ b/OpenPGP-Keychain/src/org/openintents/openpgp/IOpenPgpService.aidl @@ -23,7 +23,7 @@ import org.openintents.openpgp.IOpenPgpCallback; * Results are returned to the callback, which has to be implemented on client side. */ interface IOpenPgpService { - + /** * Encrypt * @@ -82,11 +82,11 @@ interface IOpenPgpService { in boolean asciiArmor, in boolean allowUserInteraction, in IOpenPgpCallback callback); /** - * Decrypts and verifies given input bytes. This methods handles the encrypted-only, signed-and-encrypted, + * Decrypts and verifies given input bytes. This methods handles encrypted-only, signed-and-encrypted, * and also signed-only inputBytes. * - * After successful decryption, callback's onSuccess will contain the resulting output bytes. - * callback's onSuccess will return the signatureResult for signed-and-encrypted and signed-only inputs. + * After successful decryption/verification, callback's onSuccess will contain the resulting output bytes. + * The signatureResult in onSuccess is only non-null if signed-and-encrypted and signed-only inputBytes were given. * * @param inputBytes * Byte array you want to decrypt and verify |