diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2013-09-06 18:54:55 +0200 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2013-09-06 18:54:55 +0200 |
commit | 227b277931b3bfbc1d72483e79525f22cde8b242 (patch) | |
tree | aa3052f64c1caab838750ff7182c971af12e6588 /OpenPGP-Keychain-API-Demo/src/org/openintents/crypto | |
parent | d6dd81d4449f437de672395b8f9ba2664c945d4c (diff) | |
download | open-keychain-227b277931b3bfbc1d72483e79525f22cde8b242.tar.gz open-keychain-227b277931b3bfbc1d72483e79525f22cde8b242.tar.bz2 open-keychain-227b277931b3bfbc1d72483e79525f22cde8b242.zip |
sign and encrypt basically working
Diffstat (limited to 'OpenPGP-Keychain-API-Demo/src/org/openintents/crypto')
-rw-r--r-- | OpenPGP-Keychain-API-Demo/src/org/openintents/crypto/ICryptoService.aidl | 6 |
1 files changed, 2 insertions, 4 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 c84ca28fb..b74ab642c 100644 --- a/OpenPGP-Keychain-API-Demo/src/org/openintents/crypto/ICryptoService.aidl +++ b/OpenPGP-Keychain-API-Demo/src/org/openintents/crypto/ICryptoService.aidl @@ -41,12 +41,10 @@ interface ICryptoService { * * @param inputBytes * Byte array you want to encrypt - * @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 sign(in byte[] inputBytes, in ICryptoCallback callback); /** * Encrypt and sign @@ -60,7 +58,7 @@ interface ICryptoService { * @param callback * Callback where to return results */ - oneway void encryptAndSign(in byte[] inputBytes, in String[] encryptionUserIds, String signatureUserId, in ICryptoCallback callback); + oneway void encryptAndSign(in byte[] inputBytes, in String[] encryptionUserIds, in ICryptoCallback callback); /** * Decrypts and verifies given input bytes. If no signature is present this method |