diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2013-09-14 02:08:06 +0200 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2013-09-14 02:08:06 +0200 |
commit | bf7fb08bca2abe85c9ed16592b1dc20fc51772eb (patch) | |
tree | f79fe4c3d01d71aa6a779642f367e80cce84413f /OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure | |
parent | a4ae97628434b5b2e86e09b2718fda9559ea9c7f (diff) | |
download | open-keychain-bf7fb08bca2abe85c9ed16592b1dc20fc51772eb.tar.gz open-keychain-bf7fb08bca2abe85c9ed16592b1dc20fc51772eb.tar.bz2 open-keychain-bf7fb08bca2abe85c9ed16592b1dc20fc51772eb.zip |
API update
Diffstat (limited to 'OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure')
-rw-r--r-- | OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure/keychain/demo/OpenPgpProviderActivity.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure/keychain/demo/OpenPgpProviderActivity.java b/OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure/keychain/demo/OpenPgpProviderActivity.java index 2c2b86835..a5f1072bc 100644 --- a/OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure/keychain/demo/OpenPgpProviderActivity.java +++ b/OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure/keychain/demo/OpenPgpProviderActivity.java @@ -159,7 +159,7 @@ public class OpenPgpProviderActivity extends Activity { byte[] inputBytes = mMessage.getText().toString().getBytes(); try { - mCryptoServiceConnection.getService().encryptAndSign(inputBytes, + mCryptoServiceConnection.getService().signAndEncrypt(inputBytes, mEncryptUserIds.getText().toString().split(","), true, encryptCallback); } catch (RemoteException e) { Log.e(Constants.TAG, "CryptoProviderDemo", e); |