diff options
author | Thialfihar <thialfihar@gmail.com> | 2010-12-25 14:00:25 +0000 |
---|---|---|
committer | Thialfihar <thialfihar@gmail.com> | 2010-12-25 14:00:25 +0000 |
commit | 428cf39ba39314a193bc70930ca45317c4543404 (patch) | |
tree | b8a4e76983f92e310f1f6d81d7fd339fd0d54fa8 /src/org/thialfihar/android/apg/EncryptActivity.java | |
parent | 01889c405fd733c6a55eb7c9ef1f188b4cc95637 (diff) | |
download | open-keychain-428cf39ba39314a193bc70930ca45317c4543404.tar.gz open-keychain-428cf39ba39314a193bc70930ca45317c4543404.tar.bz2 open-keychain-428cf39ba39314a193bc70930ca45317c4543404.zip |
added an Intent and functionality to generate detached signatures
Diffstat (limited to 'src/org/thialfihar/android/apg/EncryptActivity.java')
-rw-r--r-- | src/org/thialfihar/android/apg/EncryptActivity.java | 44 |
1 files changed, 36 insertions, 8 deletions
diff --git a/src/org/thialfihar/android/apg/EncryptActivity.java b/src/org/thialfihar/android/apg/EncryptActivity.java index ac9550788..066b0b483 100644 --- a/src/org/thialfihar/android/apg/EncryptActivity.java +++ b/src/org/thialfihar/android/apg/EncryptActivity.java @@ -101,11 +101,15 @@ public class EncryptActivity extends BaseActivity { private DataSource mDataSource = null; private DataDestination mDataDestination = null; + private boolean mGenerateSignature = false; + @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.encrypt); + mGenerateSignature = false; + mSource = (ViewFlipper) findViewById(R.id.source); mSourceLabel = (TextView) findViewById(R.id.sourceLabel); mSourcePrevious = (ImageView) findViewById(R.id.sourcePrevious); @@ -271,17 +275,25 @@ public class EncryptActivity extends BaseActivity { mIntent = getIntent(); if (Apg.Intent.ENCRYPT.equals(mIntent.getAction()) || Apg.Intent.ENCRYPT_FILE.equals(mIntent.getAction()) || - Apg.Intent.ENCRYPT_AND_RETURN.equals(mIntent.getAction())) { + Apg.Intent.ENCRYPT_AND_RETURN.equals(mIntent.getAction()) || + Apg.Intent.GENERATE_SIGNATURE.equals(mIntent.getAction())) { mContentUri = mIntent.getData(); Bundle extras = mIntent.getExtras(); if (extras == null) { extras = new Bundle(); } - if (Apg.Intent.ENCRYPT_AND_RETURN.equals(mIntent.getAction())) { + if (Apg.Intent.ENCRYPT_AND_RETURN.equals(mIntent.getAction()) || + Apg.Intent.GENERATE_SIGNATURE.equals(mIntent.getAction())) { mReturnResult = true; } + if (Apg.Intent.GENERATE_SIGNATURE.equals(mIntent.getAction())) { + mGenerateSignature = true; + mOverrideAsciiArmour = true; + mAsciiArmourDemand = false; + } + if (extras.containsKey(Apg.EXTRA_ASCII_ARMOUR)) { mAsciiArmourDemand = extras.getBoolean(Apg.EXTRA_ASCII_ARMOUR, true); mOverrideAsciiArmour = true; @@ -338,7 +350,8 @@ public class EncryptActivity extends BaseActivity { } if (Apg.Intent.ENCRYPT.equals(mIntent.getAction()) || - Apg.Intent.ENCRYPT_AND_RETURN.equals(mIntent.getAction())) { + Apg.Intent.ENCRYPT_AND_RETURN.equals(mIntent.getAction()) || + Apg.Intent.GENERATE_SIGNATURE.equals(mIntent.getAction())) { if (textData != null) { mMessage.setText(textData); } @@ -660,7 +673,14 @@ public class EncryptActivity extends BaseActivity { useAsciiArmour = mAsciiArmourDemand; } - if (signOnly) { + if (mGenerateSignature) { + Apg.generateSignature(this, in, out, useAsciiArmour, mDataSource.isBinary(), + getSecretKeyId(), + Apg.getCachedPassPhrase(getSecretKeyId()), + mPreferences.getDefaultHashAlgorithm(), + mPreferences.getForceV3Signatures(), + this); + } else if (signOnly) { Apg.signText(this, in, out, getSecretKeyId(), Apg.getCachedPassPhrase(getSecretKeyId()), mPreferences.getDefaultHashAlgorithm(), @@ -680,11 +700,19 @@ public class EncryptActivity extends BaseActivity { out.close(); if (mEncryptTarget != Id.target.file) { if (useAsciiArmour) { - data.putString(Apg.EXTRA_ENCRYPTED_MESSAGE, - new String(((ByteArrayOutputStream)out).toByteArray())); + String extraData = new String(((ByteArrayOutputStream)out).toByteArray()); + if (mGenerateSignature) { + data.putString(Apg.EXTRA_SIGNATURE_TEXT, extraData); + } else { + data.putString(Apg.EXTRA_ENCRYPTED_MESSAGE, extraData); + } } else { - data.putByteArray(Apg.EXTRA_ENCRYPTED_DATA, - ((ByteArrayOutputStream)out).toByteArray()); + byte extraData[] = ((ByteArrayOutputStream)out).toByteArray(); + if (mGenerateSignature) { + data.putByteArray(Apg.EXTRA_SIGNATURE_DATA, extraData); + } else { + data.putByteArray(Apg.EXTRA_ENCRYPTED_DATA, extraData); + } } } } catch (IOException e) { |