diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2013-09-09 12:59:53 +0200 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2013-09-09 12:59:53 +0200 |
commit | 5dc693c64c14000a3a03903736d000a45795bcee (patch) | |
tree | fc7653d46740579f73d69558fe2a745f6686cb83 /OpenPGP-Keychain/src/org/openintents/crypto | |
parent | c4bf7c5d1145c3a08211f31633d75c61bbb4bcb1 (diff) | |
download | open-keychain-5dc693c64c14000a3a03903736d000a45795bcee.tar.gz open-keychain-5dc693c64c14000a3a03903736d000a45795bcee.tar.bz2 open-keychain-5dc693c64c14000a3a03903736d000a45795bcee.zip |
Make asciiArmor a parameter, extend advanced app settings
Diffstat (limited to 'OpenPGP-Keychain/src/org/openintents/crypto')
-rw-r--r-- | OpenPGP-Keychain/src/org/openintents/crypto/ICryptoService.aidl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenPGP-Keychain/src/org/openintents/crypto/ICryptoService.aidl b/OpenPGP-Keychain/src/org/openintents/crypto/ICryptoService.aidl index 555a71cd6..45a80dfd3 100644 --- a/OpenPGP-Keychain/src/org/openintents/crypto/ICryptoService.aidl +++ b/OpenPGP-Keychain/src/org/openintents/crypto/ICryptoService.aidl @@ -34,7 +34,7 @@ interface ICryptoService { * @param callback * Callback where to return results */ - oneway void encrypt(in byte[] inputBytes, in String[] encryptionUserIds, in ICryptoCallback callback); + oneway void encrypt(in byte[] inputBytes, in String[] encryptionUserIds, in boolean asciiArmor, in ICryptoCallback callback); /** * Sign @@ -44,7 +44,7 @@ interface ICryptoService { * @param callback * Callback where to return results */ - oneway void sign(in byte[] inputBytes, in ICryptoCallback callback); + oneway void sign(in byte[] inputBytes, in boolean asciiArmor, in ICryptoCallback callback); /** * Encrypt and sign @@ -58,7 +58,7 @@ interface ICryptoService { * @param callback * Callback where to return results */ - oneway void encryptAndSign(in byte[] inputBytes, in String[] encryptionUserIds, in ICryptoCallback callback); + oneway void encryptAndSign(in byte[] inputBytes, in String[] encryptionUserIds, in boolean asciiArmor, in ICryptoCallback callback); /** * Decrypts and verifies given input bytes. If no signature is present this method |