aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure/keychain
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2013-09-09 22:38:09 +0200
committerDominik Schürmann <dominik@dominikschuermann.de>2013-09-09 22:38:09 +0200
commit94a81dd8ae836f991f1017e5ac2c7b0f90b3854d (patch)
treed8dede6a9984fec88a142cf51984e41e296b070c /OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure/keychain
parent1421046c6d9a7f153e28b17fbd94e873a1d6aa05 (diff)
downloadopen-keychain-94a81dd8ae836f991f1017e5ac2c7b0f90b3854d.tar.gz
open-keychain-94a81dd8ae836f991f1017e5ac2c7b0f90b3854d.tar.bz2
open-keychain-94a81dd8ae836f991f1017e5ac2c7b0f90b3854d.zip
Fixes for decrypt and sign
Diffstat (limited to 'OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure/keychain')
-rw-r--r--OpenPGP-Keychain-API-Demo/src/org/sufficientlysecure/keychain/demo/CryptoProviderDemoActivity.java6
1 files changed, 4 insertions, 2 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 1189d2cf4..ab5795c1c 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
@@ -102,8 +102,10 @@ public class CryptoProviderDemoActivity extends Activity {
@Override
public void run() {
- mMessage.setText(new String(outputBytes) + "\n\n" + signatureResult.toString());
-
+ mMessage.setText(new String(outputBytes));
+ Toast.makeText(CryptoProviderDemoActivity.this,
+ "signature result:\n" + signatureResult.toString(), Toast.LENGTH_LONG)
+ .show();
}
});