aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/theb/ssh/TouchEntropy.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/theb/ssh/TouchEntropy.java')
-rw-r--r--src/org/theb/ssh/TouchEntropy.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/org/theb/ssh/TouchEntropy.java b/src/org/theb/ssh/TouchEntropy.java
index 023e531..bf2d737 100644
--- a/src/org/theb/ssh/TouchEntropy.java
+++ b/src/org/theb/ssh/TouchEntropy.java
@@ -2,6 +2,7 @@ package org.theb.ssh;
import android.app.Activity;
import android.content.Context;
+import android.content.Intent;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
@@ -74,7 +75,9 @@ public class TouchEntropy extends Activity {
// SHA1PRNG only keeps 20 bytes (160 bits) of entropy.
if (mEntropy.length() > 20) {
- TouchEntropy.this.setResult(RESULT_OK, mEntropy);
+ Intent intent = TouchEntropy.this.getIntent();
+ intent.putExtra(Intent.EXTRA_TEXT, mEntropy);
+ TouchEntropy.this.setResult(RESULT_OK, intent);
TouchEntropy.this.finish();
}