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/sufficientlysecure | |
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/sufficientlysecure')
-rw-r--r-- | OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure/keychain/demo/CryptoProviderDemoActivity.java | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure/keychain/demo/CryptoProviderDemoActivity.java b/OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure/keychain/demo/CryptoProviderDemoActivity.java index 319820d7c..ca8824815 100644 --- a/OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure/keychain/demo/CryptoProviderDemoActivity.java +++ b/OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure/keychain/demo/CryptoProviderDemoActivity.java @@ -49,7 +49,6 @@ public class CryptoProviderDemoActivity extends Activity { EditText mMessage; EditText mCiphertext; EditText mEncryptUserId; - EditText mSignUserId; private CryptoServiceConnection mCryptoServiceConnection; @@ -136,8 +135,7 @@ public class CryptoProviderDemoActivity extends Activity { byte[] inputBytes = mMessage.getText().toString().getBytes(); try { - mCryptoServiceConnection.getService().sign(inputBytes, - mSignUserId.getText().toString(), encryptCallback); + mCryptoServiceConnection.getService().sign(inputBytes, encryptCallback); } catch (RemoteException e) { Log.e(Constants.TAG, "CryptoProviderDemo", e); } @@ -148,8 +146,7 @@ public class CryptoProviderDemoActivity extends Activity { try { mCryptoServiceConnection.getService().encryptAndSign(inputBytes, - new String[] { mEncryptUserId.getText().toString() }, - mSignUserId.getText().toString(), encryptCallback); + new String[] { mEncryptUserId.getText().toString() }, encryptCallback); } catch (RemoteException e) { Log.e(Constants.TAG, "CryptoProviderDemo", e); } |