diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2013-06-17 19:51:41 +0200 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2013-06-17 19:51:41 +0200 |
commit | d4e054d5f24afeef8859c9294f3ef1b69242b037 (patch) | |
tree | b92709e0e7b32cc768ad8d5c220a0fbb202b4663 /OpenPGP-Keychain-API-Demo/src/org/openintents/crypto | |
parent | 0f3e78ebf7d0c71a18fef55e543c5b54a066735b (diff) | |
download | open-keychain-d4e054d5f24afeef8859c9294f3ef1b69242b037.tar.gz open-keychain-d4e054d5f24afeef8859c9294f3ef1b69242b037.tar.bz2 open-keychain-d4e054d5f24afeef8859c9294f3ef1b69242b037.zip |
some fixes all over
Diffstat (limited to 'OpenPGP-Keychain-API-Demo/src/org/openintents/crypto')
-rw-r--r-- | OpenPGP-Keychain-API-Demo/src/org/openintents/crypto/ICryptoService.aidl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenPGP-Keychain-API-Demo/src/org/openintents/crypto/ICryptoService.aidl b/OpenPGP-Keychain-API-Demo/src/org/openintents/crypto/ICryptoService.aidl index 04c8eb30e..53f39dffc 100644 --- a/OpenPGP-Keychain-API-Demo/src/org/openintents/crypto/ICryptoService.aidl +++ b/OpenPGP-Keychain-API-Demo/src/org/openintents/crypto/ICryptoService.aidl @@ -37,30 +37,30 @@ interface ICryptoService { oneway void encrypt(in byte[] inputBytes, in String[] encryptionUserIds, in ICryptoCallback callback); /** - * Encrypt and sign + * Sign * * @param inputBytes * Byte array you want to encrypt - * @param encryptionUserIds - * User Ids (emails) of recipients * @param signatureUserId * User Ids (email) of sender * @param callback * Callback where to return results */ - oneway void encryptAndSign(in byte[] inputBytes, in String[] encryptionUserIds, String signatureUserId, in ICryptoCallback callback); + oneway void sign(in byte[] inputBytes, String signatureUserId, in ICryptoCallback callback); /** - * Sign + * Encrypt and sign * * @param inputBytes * Byte array you want to encrypt + * @param encryptionUserIds + * User Ids (emails) of recipients * @param signatureUserId * User Ids (email) of sender * @param callback * Callback where to return results */ - oneway void sign(in byte[] inputBytes, String signatureUserId, in ICryptoCallback callback); + oneway void encryptAndSign(in byte[] inputBytes, in String[] encryptionUserIds, String signatureUserId, in ICryptoCallback callback); /** * Decrypts and verifies given input bytes. If no signature is present this method |