mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-27 11:12:15 -05:00
Refactoring of EncryptTextActivity
This commit is contained in:
parent
adbe5ab63f
commit
13f4cc4ad3
@ -37,7 +37,6 @@ import org.sufficientlysecure.keychain.service.ServiceProgressHandler;
|
|||||||
import org.sufficientlysecure.keychain.ui.dialog.ProgressDialogFragment;
|
import org.sufficientlysecure.keychain.ui.dialog.ProgressDialogFragment;
|
||||||
import org.sufficientlysecure.keychain.util.Passphrase;
|
import org.sufficientlysecure.keychain.util.Passphrase;
|
||||||
|
|
||||||
|
|
||||||
public abstract class EncryptActivity extends BaseActivity {
|
public abstract class EncryptActivity extends BaseActivity {
|
||||||
|
|
||||||
public static final int REQUEST_CODE_PASSPHRASE = 0x00008001;
|
public static final int REQUEST_CODE_PASSPHRASE = 0x00008001;
|
||||||
|
@ -1,62 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2014 Dominik Schürmann <dominik@dominikschuermann.de>
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package org.sufficientlysecure.keychain.ui;
|
|
||||||
|
|
||||||
import android.net.Uri;
|
|
||||||
|
|
||||||
import org.sufficientlysecure.keychain.util.Passphrase;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
|
|
||||||
public interface EncryptActivityInterface {
|
|
||||||
|
|
||||||
public interface UpdateListener {
|
|
||||||
void onNotifyUpdate();
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isUseArmor();
|
|
||||||
public boolean isUseCompression();
|
|
||||||
public boolean isEncryptFilenames();
|
|
||||||
public boolean isHiddenRecipients();
|
|
||||||
|
|
||||||
public long getSignatureKey();
|
|
||||||
public long[] getEncryptionKeys();
|
|
||||||
public String[] getEncryptionUsers();
|
|
||||||
public void setSignatureKey(long signatureKey);
|
|
||||||
public void setEncryptionKeys(long[] encryptionKeys);
|
|
||||||
public void setEncryptionUsers(String[] encryptionUsers);
|
|
||||||
|
|
||||||
public void setPassphrase(Passphrase passphrase);
|
|
||||||
|
|
||||||
// ArrayList on purpose as only those are parcelable
|
|
||||||
public ArrayList<Uri> getInputUris();
|
|
||||||
public ArrayList<Uri> getOutputUris();
|
|
||||||
public void setInputUris(ArrayList<Uri> uris);
|
|
||||||
public void setOutputUris(ArrayList<Uri> uris);
|
|
||||||
|
|
||||||
public String getMessage();
|
|
||||||
public void setMessage(String message);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Call this to notify the UI for changes done on the array lists or arrays,
|
|
||||||
* automatically called if setter is used
|
|
||||||
*/
|
|
||||||
public void notifyUpdate();
|
|
||||||
|
|
||||||
public void startEncrypt(boolean share);
|
|
||||||
}
|
|
@ -18,11 +18,13 @@
|
|||||||
|
|
||||||
package org.sufficientlysecure.keychain.ui;
|
package org.sufficientlysecure.keychain.ui;
|
||||||
|
|
||||||
|
import android.app.Activity;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.support.v4.app.Fragment;
|
import android.support.v4.app.Fragment;
|
||||||
import android.support.v4.app.FragmentTransaction;
|
import android.support.v4.app.FragmentTransaction;
|
||||||
|
import android.view.View;
|
||||||
|
|
||||||
import org.sufficientlysecure.keychain.Constants;
|
import org.sufficientlysecure.keychain.Constants;
|
||||||
import org.sufficientlysecure.keychain.R;
|
import org.sufficientlysecure.keychain.R;
|
||||||
@ -33,7 +35,7 @@ import org.sufficientlysecure.keychain.util.Passphrase;
|
|||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
|
||||||
public class EncryptFilesActivity extends BaseActivity implements
|
public class EncryptFilesActivity extends BaseActivity implements
|
||||||
EncryptAsymmetricFragment.IAsymmetric, EncryptSymmetricFragment.ISymmetric,
|
EncryptModeAsymmetricFragment.IAsymmetric, EncryptModeSymmetricFragment.ISymmetric,
|
||||||
EncryptFilesFragment.IMode {
|
EncryptFilesFragment.IMode {
|
||||||
|
|
||||||
/* Intents */
|
/* Intents */
|
||||||
@ -53,6 +55,13 @@ public class EncryptFilesActivity extends BaseActivity implements
|
|||||||
public void onCreate(Bundle savedInstanceState) {
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
|
|
||||||
|
setFullScreenDialogClose(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
finish();
|
||||||
|
}
|
||||||
|
}, false);
|
||||||
|
|
||||||
// Handle intent actions
|
// Handle intent actions
|
||||||
handleActions(getIntent(), savedInstanceState);
|
handleActions(getIntent(), savedInstanceState);
|
||||||
}
|
}
|
||||||
@ -101,7 +110,7 @@ public class EncryptFilesActivity extends BaseActivity implements
|
|||||||
if (savedInstanceState == null) {
|
if (savedInstanceState == null) {
|
||||||
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
|
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
|
||||||
|
|
||||||
mModeFragment = EncryptAsymmetricFragment.newInstance(mSigningKeyId, mEncryptionKeyIds);
|
mModeFragment = EncryptModeAsymmetricFragment.newInstance(mSigningKeyId, mEncryptionKeyIds);
|
||||||
transaction.replace(R.id.encrypt_mode_container, mModeFragment, "mode");
|
transaction.replace(R.id.encrypt_mode_container, mModeFragment, "mode");
|
||||||
|
|
||||||
mEncryptFragment = EncryptFilesFragment.newInstance(uris, useArmor);
|
mEncryptFragment = EncryptFilesFragment.newInstance(uris, useArmor);
|
||||||
@ -119,8 +128,8 @@ public class EncryptFilesActivity extends BaseActivity implements
|
|||||||
getSupportFragmentManager().beginTransaction()
|
getSupportFragmentManager().beginTransaction()
|
||||||
.replace(R.id.encrypt_mode_container,
|
.replace(R.id.encrypt_mode_container,
|
||||||
symmetric
|
symmetric
|
||||||
? EncryptSymmetricFragment.newInstance()
|
? EncryptModeSymmetricFragment.newInstance()
|
||||||
: EncryptAsymmetricFragment.newInstance(0, null)
|
: EncryptModeAsymmetricFragment.newInstance(0, null)
|
||||||
)
|
)
|
||||||
.commitAllowingStateLoss();
|
.commitAllowingStateLoss();
|
||||||
getSupportFragmentManager().executePendingTransactions();
|
getSupportFragmentManager().executePendingTransactions();
|
||||||
|
@ -68,17 +68,18 @@ import java.util.Set;
|
|||||||
|
|
||||||
public class EncryptFilesFragment extends CryptoOperationFragment {
|
public class EncryptFilesFragment extends CryptoOperationFragment {
|
||||||
|
|
||||||
private static final int REQUEST_CODE_INPUT = 0x00007003;
|
|
||||||
private static final int REQUEST_CODE_OUTPUT = 0x00007007;
|
|
||||||
|
|
||||||
public interface IMode {
|
public interface IMode {
|
||||||
|
|
||||||
public void onModeChanged(boolean symmetric);
|
public void onModeChanged(boolean symmetric);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static final String ARG_USE_ASCII_ARMOR = "use_ascii_armor";
|
||||||
|
public static final String ARG_URIS = "uris";
|
||||||
|
|
||||||
|
private static final int REQUEST_CODE_INPUT = 0x00007003;
|
||||||
|
private static final int REQUEST_CODE_OUTPUT = 0x00007007;
|
||||||
|
|
||||||
private IMode mModeInterface;
|
private IMode mModeInterface;
|
||||||
|
|
||||||
// model used by fragments
|
|
||||||
private boolean mSymmetricMode = true;
|
private boolean mSymmetricMode = true;
|
||||||
private boolean mUseArmor = false;
|
private boolean mUseArmor = false;
|
||||||
private boolean mUseCompression = true;
|
private boolean mUseCompression = true;
|
||||||
@ -99,11 +100,6 @@ public class EncryptFilesFragment extends CryptoOperationFragment {
|
|||||||
private SelectedFilesAdapter mAdapter = new SelectedFilesAdapter();
|
private SelectedFilesAdapter mAdapter = new SelectedFilesAdapter();
|
||||||
private final Map<Uri, Bitmap> thumbnailCache = new HashMap<>();
|
private final Map<Uri, Bitmap> thumbnailCache = new HashMap<>();
|
||||||
|
|
||||||
|
|
||||||
public static final String ARG_USE_ASCII_ARMOR = "use_ascii_armor";
|
|
||||||
public static final String ARG_URIS = "uris";
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates new instance of this fragment
|
* Creates new instance of this fragment
|
||||||
*/
|
*/
|
||||||
|
@ -40,7 +40,7 @@ import java.util.ArrayList;
|
|||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class EncryptAsymmetricFragment extends Fragment {
|
public class EncryptModeAsymmetricFragment extends Fragment {
|
||||||
|
|
||||||
public interface IAsymmetric {
|
public interface IAsymmetric {
|
||||||
|
|
||||||
@ -74,8 +74,8 @@ public class EncryptAsymmetricFragment extends Fragment {
|
|||||||
/**
|
/**
|
||||||
* Creates new instance of this fragment
|
* Creates new instance of this fragment
|
||||||
*/
|
*/
|
||||||
public static EncryptAsymmetricFragment newInstance(long signatureKey, long[] encryptionKeyIds) {
|
public static EncryptModeAsymmetricFragment newInstance(long signatureKey, long[] encryptionKeyIds) {
|
||||||
EncryptAsymmetricFragment frag = new EncryptAsymmetricFragment();
|
EncryptModeAsymmetricFragment frag = new EncryptModeAsymmetricFragment();
|
||||||
|
|
||||||
Bundle args = new Bundle();
|
Bundle args = new Bundle();
|
||||||
args.putLong(ARG_SINGATURE_KEY_ID, signatureKey);
|
args.putLong(ARG_SINGATURE_KEY_ID, signatureKey);
|
@ -30,7 +30,7 @@ import android.widget.EditText;
|
|||||||
import org.sufficientlysecure.keychain.R;
|
import org.sufficientlysecure.keychain.R;
|
||||||
import org.sufficientlysecure.keychain.util.Passphrase;
|
import org.sufficientlysecure.keychain.util.Passphrase;
|
||||||
|
|
||||||
public class EncryptSymmetricFragment extends Fragment {
|
public class EncryptModeSymmetricFragment extends Fragment {
|
||||||
|
|
||||||
public interface ISymmetric {
|
public interface ISymmetric {
|
||||||
|
|
||||||
@ -45,8 +45,8 @@ public class EncryptSymmetricFragment extends Fragment {
|
|||||||
/**
|
/**
|
||||||
* Creates new instance of this fragment
|
* Creates new instance of this fragment
|
||||||
*/
|
*/
|
||||||
public static EncryptSymmetricFragment newInstance() {
|
public static EncryptModeSymmetricFragment newInstance() {
|
||||||
EncryptSymmetricFragment frag = new EncryptSymmetricFragment();
|
EncryptModeSymmetricFragment frag = new EncryptModeSymmetricFragment();
|
||||||
|
|
||||||
Bundle args = new Bundle();
|
Bundle args = new Bundle();
|
||||||
frag.setArguments(args);
|
frag.setArguments(args);
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Dominik Schürmann <dominik@dominikschuermann.de>
|
* Copyright (C) 2012-2015 Dominik Schürmann <dominik@dominikschuermann.de>
|
||||||
* Copyright (C) 2010-2014 Thialfihar <thi@thialfihar.org>
|
* Copyright (C) 2010-2014 Thialfihar <thi@thialfihar.org>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
@ -19,30 +19,21 @@
|
|||||||
package org.sufficientlysecure.keychain.ui;
|
package org.sufficientlysecure.keychain.ui;
|
||||||
|
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.net.Uri;
|
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.view.Menu;
|
import android.support.v4.app.Fragment;
|
||||||
import android.view.MenuItem;
|
import android.support.v4.app.FragmentTransaction;
|
||||||
|
import android.view.View;
|
||||||
|
|
||||||
import org.spongycastle.bcpg.CompressionAlgorithmTags;
|
|
||||||
import org.sufficientlysecure.keychain.Constants;
|
import org.sufficientlysecure.keychain.Constants;
|
||||||
import org.sufficientlysecure.keychain.R;
|
import org.sufficientlysecure.keychain.R;
|
||||||
import org.sufficientlysecure.keychain.api.OpenKeychainIntents;
|
import org.sufficientlysecure.keychain.api.OpenKeychainIntents;
|
||||||
import org.sufficientlysecure.keychain.compatibility.ClipboardReflection;
|
import org.sufficientlysecure.keychain.ui.base.BaseActivity;
|
||||||
import org.sufficientlysecure.keychain.operations.results.SignEncryptResult;
|
|
||||||
import org.sufficientlysecure.keychain.pgp.KeyRing;
|
|
||||||
import org.sufficientlysecure.keychain.pgp.PgpConstants;
|
|
||||||
import org.sufficientlysecure.keychain.pgp.SignEncryptParcel;
|
|
||||||
import org.sufficientlysecure.keychain.ui.util.Notify;
|
|
||||||
import org.sufficientlysecure.keychain.util.Log;
|
import org.sufficientlysecure.keychain.util.Log;
|
||||||
import org.sufficientlysecure.keychain.util.Passphrase;
|
import org.sufficientlysecure.keychain.util.Passphrase;
|
||||||
import org.sufficientlysecure.keychain.util.ShareHelper;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
public class EncryptTextActivity extends BaseActivity implements
|
||||||
import java.util.HashSet;
|
EncryptModeAsymmetricFragment.IAsymmetric, EncryptModeSymmetricFragment.ISymmetric,
|
||||||
import java.util.Set;
|
EncryptTextFragment.IMode {
|
||||||
|
|
||||||
public class EncryptTextActivity extends EncryptActivity {
|
|
||||||
|
|
||||||
/* Intents */
|
/* Intents */
|
||||||
public static final String ACTION_ENCRYPT_TEXT = OpenKeychainIntents.ENCRYPT_TEXT;
|
public static final String ACTION_ENCRYPT_TEXT = OpenKeychainIntents.ENCRYPT_TEXT;
|
||||||
@ -54,244 +45,22 @@ public class EncryptTextActivity extends EncryptActivity {
|
|||||||
public static final String EXTRA_SIGNATURE_KEY_ID = Constants.EXTRA_PREFIX + "EXTRA_SIGNATURE_KEY_ID";
|
public static final String EXTRA_SIGNATURE_KEY_ID = Constants.EXTRA_PREFIX + "EXTRA_SIGNATURE_KEY_ID";
|
||||||
public static final String EXTRA_ENCRYPTION_KEY_IDS = Constants.EXTRA_PREFIX + "EXTRA_SIGNATURE_KEY_IDS";
|
public static final String EXTRA_ENCRYPTION_KEY_IDS = Constants.EXTRA_PREFIX + "EXTRA_SIGNATURE_KEY_IDS";
|
||||||
|
|
||||||
// view
|
Fragment mModeFragment;
|
||||||
private int mCurrentMode = MODE_ASYMMETRIC;
|
EncryptTextFragment mEncryptFragment;
|
||||||
|
|
||||||
// tabs
|
|
||||||
private static final int MODE_ASYMMETRIC = 0;
|
|
||||||
private static final int MODE_SYMMETRIC = 1;
|
|
||||||
|
|
||||||
// model used by fragments
|
|
||||||
private boolean mShareAfterEncrypt = false;
|
|
||||||
private boolean mUseCompression = true;
|
|
||||||
private boolean mHiddenRecipients = false;
|
|
||||||
|
|
||||||
private long mEncryptionKeyIds[] = null;
|
|
||||||
private String mEncryptionUserIds[] = null;
|
|
||||||
// TODO Constants.key.none? What's wrong with a null value?
|
|
||||||
private long mSigningKeyId = Constants.key.none;
|
|
||||||
private Passphrase mPassphrase = new Passphrase();
|
|
||||||
|
|
||||||
private ArrayList<Uri> mInputUris;
|
|
||||||
private ArrayList<Uri> mOutputUris;
|
|
||||||
private String mMessage = "";
|
|
||||||
|
|
||||||
public boolean isModeSymmetric() {
|
|
||||||
return MODE_SYMMETRIC == mCurrentMode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isUseCompression() {
|
|
||||||
return mUseCompression;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isHiddenRecipients() {
|
|
||||||
return mHiddenRecipients;
|
|
||||||
}
|
|
||||||
|
|
||||||
public long getSignatureKey() {
|
|
||||||
return mSigningKeyId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public long[] getEncryptionKeys() {
|
|
||||||
return mEncryptionKeyIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String[] getEncryptionUsers() {
|
|
||||||
return mEncryptionUserIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSignatureKey(long signatureKey) {
|
|
||||||
mSigningKeyId = signatureKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEncryptionKeys(long[] encryptionKeys) {
|
|
||||||
mEncryptionKeyIds = encryptionKeys;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEncryptionUsers(String[] encryptionUsers) {
|
|
||||||
mEncryptionUserIds = encryptionUsers;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPassphrase(Passphrase passphrase) {
|
|
||||||
if (mPassphrase != null) {
|
|
||||||
mPassphrase.removeFromMemory();
|
|
||||||
}
|
|
||||||
mPassphrase = passphrase;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ArrayList<Uri> getInputUris() {
|
|
||||||
if (mInputUris == null) mInputUris = new ArrayList<>();
|
|
||||||
return mInputUris;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ArrayList<Uri> getOutputUris() {
|
|
||||||
if (mOutputUris == null) mOutputUris = new ArrayList<>();
|
|
||||||
return mOutputUris;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setInputUris(ArrayList<Uri> uris) {
|
|
||||||
mInputUris = uris;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOutputUris(ArrayList<Uri> uris) {
|
|
||||||
mOutputUris = uris;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMessage() {
|
|
||||||
return mMessage;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMessage(String message) {
|
|
||||||
mMessage = message;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void startEncrypt(boolean share) {
|
|
||||||
mShareAfterEncrypt = share;
|
|
||||||
startEncrypt();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onEncryptSuccess(SignEncryptResult result) {
|
|
||||||
if (mShareAfterEncrypt) {
|
|
||||||
// Share encrypted message/file
|
|
||||||
startActivity(sendWithChooserExcludingEncrypt(result.getResultBytes()));
|
|
||||||
} else {
|
|
||||||
// Copy to clipboard
|
|
||||||
copyToClipboard(result.getResultBytes());
|
|
||||||
result.createNotify(EncryptTextActivity.this).show();
|
|
||||||
// Notify.create(EncryptTextActivity.this,
|
|
||||||
// R.string.encrypt_sign_clipboard_successful, Notify.Style.OK)
|
|
||||||
// .show(getSupportFragmentManager().findFragmentById(R.id.encrypt_text_fragment));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected SignEncryptParcel createEncryptBundle() {
|
|
||||||
// fill values for this action
|
|
||||||
SignEncryptParcel data = new SignEncryptParcel();
|
|
||||||
|
|
||||||
data.setBytes(mMessage.getBytes());
|
|
||||||
data.setCleartextSignature(true);
|
|
||||||
|
|
||||||
if (mUseCompression) {
|
|
||||||
data.setCompressionId(PgpConstants.sPreferredCompressionAlgorithms.get(0));
|
|
||||||
} else {
|
|
||||||
data.setCompressionId(CompressionAlgorithmTags.UNCOMPRESSED);
|
|
||||||
}
|
|
||||||
data.setHiddenRecipients(mHiddenRecipients);
|
|
||||||
data.setSymmetricEncryptionAlgorithm(PgpConstants.OpenKeychainSymmetricKeyAlgorithmTags.USE_PREFERRED);
|
|
||||||
data.setSignatureHashAlgorithm(PgpConstants.OpenKeychainSymmetricKeyAlgorithmTags.USE_PREFERRED);
|
|
||||||
|
|
||||||
// Always use armor for messages
|
|
||||||
data.setEnableAsciiArmorOutput(true);
|
|
||||||
|
|
||||||
if (isModeSymmetric()) {
|
|
||||||
Log.d(Constants.TAG, "Symmetric encryption enabled!");
|
|
||||||
Passphrase passphrase = mPassphrase;
|
|
||||||
if (passphrase.isEmpty()) {
|
|
||||||
passphrase = null;
|
|
||||||
}
|
|
||||||
data.setSymmetricPassphrase(passphrase);
|
|
||||||
} else {
|
|
||||||
data.setEncryptionMasterKeyIds(mEncryptionKeyIds);
|
|
||||||
data.setSignatureMasterKeyId(mSigningKeyId);
|
|
||||||
data.setSignaturePassphrase(mSigningKeyPassphrase);
|
|
||||||
}
|
|
||||||
return data;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void copyToClipboard(byte[] resultBytes) {
|
|
||||||
ClipboardReflection.copyToClipboard(this, new String(resultBytes));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create Intent Chooser but exclude OK's EncryptActivity.
|
|
||||||
*/
|
|
||||||
private Intent sendWithChooserExcludingEncrypt(byte[] resultBytes) {
|
|
||||||
Intent prototype = createSendIntent(resultBytes);
|
|
||||||
String title = getString(R.string.title_share_message);
|
|
||||||
|
|
||||||
// we don't want to encrypt the encrypted, no inception ;)
|
|
||||||
String[] blacklist = new String[]{
|
|
||||||
Constants.PACKAGE_NAME + ".ui.EncryptTextActivity",
|
|
||||||
"org.thialfihar.android.apg.ui.EncryptActivity"
|
|
||||||
};
|
|
||||||
|
|
||||||
return new ShareHelper(this).createChooserExcluding(prototype, title, blacklist);
|
|
||||||
}
|
|
||||||
|
|
||||||
private Intent createSendIntent(byte[] resultBytes) {
|
|
||||||
Intent sendIntent;
|
|
||||||
sendIntent = new Intent(Intent.ACTION_SEND);
|
|
||||||
sendIntent.setType(Constants.ENCRYPTED_TEXT_MIME);
|
|
||||||
sendIntent.putExtra(Intent.EXTRA_TEXT, new String(resultBytes));
|
|
||||||
|
|
||||||
if (!isModeSymmetric() && mEncryptionUserIds != null) {
|
|
||||||
Set<String> users = new HashSet<>();
|
|
||||||
for (String user : mEncryptionUserIds) {
|
|
||||||
KeyRing.UserId userId = KeyRing.splitUserId(user);
|
|
||||||
if (userId.email != null) {
|
|
||||||
users.add(userId.email);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// pass trough email addresses as extra for email applications
|
|
||||||
sendIntent.putExtra(Intent.EXTRA_EMAIL, users.toArray(new String[users.size()]));
|
|
||||||
}
|
|
||||||
return sendIntent;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected boolean inputIsValid() {
|
|
||||||
if (mMessage == null) {
|
|
||||||
Notify.create(this, R.string.error_message, Notify.Style.ERROR)
|
|
||||||
.show(getSupportFragmentManager().findFragmentById(R.id.encrypt_text_fragment));
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isModeSymmetric()) {
|
|
||||||
// symmetric encryption checks
|
|
||||||
|
|
||||||
if (mPassphrase == null) {
|
|
||||||
Notify.create(this, R.string.passphrases_do_not_match, Notify.Style.ERROR)
|
|
||||||
.show(getSupportFragmentManager().findFragmentById(R.id.encrypt_text_fragment));
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (mPassphrase.isEmpty()) {
|
|
||||||
Notify.create(this, R.string.passphrase_must_not_be_empty, Notify.Style.ERROR)
|
|
||||||
.show(getSupportFragmentManager().findFragmentById(R.id.encrypt_text_fragment));
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
|
||||||
// asymmetric encryption checks
|
|
||||||
|
|
||||||
boolean gotEncryptionKeys = (mEncryptionKeyIds != null
|
|
||||||
&& mEncryptionKeyIds.length > 0);
|
|
||||||
|
|
||||||
if (!gotEncryptionKeys && mSigningKeyId == 0) {
|
|
||||||
Notify.create(this, R.string.select_encryption_or_signature_key, Notify.Style.ERROR)
|
|
||||||
.show(getSupportFragmentManager().findFragmentById(R.id.encrypt_text_fragment));
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCreate(Bundle savedInstanceState) {
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
|
|
||||||
// if called with an intent action, do not init drawer navigation
|
setFullScreenDialogClose(new View.OnClickListener() {
|
||||||
if (ACTION_ENCRYPT_TEXT.equals(getIntent().getAction())) {
|
@Override
|
||||||
// lock drawer
|
public void onClick(View v) {
|
||||||
// deactivateDrawerNavigation();
|
finish();
|
||||||
// TODO: back button to key?
|
}
|
||||||
} else {
|
}, false);
|
||||||
// activateDrawerNavigation(savedInstanceState);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handle intent actions
|
// Handle intent actions
|
||||||
handleActions(getIntent());
|
handleActions(getIntent(), savedInstanceState);
|
||||||
updateModeFragment();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -299,56 +68,13 @@ public class EncryptTextActivity extends EncryptActivity {
|
|||||||
setContentView(R.layout.encrypt_text_activity);
|
setContentView(R.layout.encrypt_text_activity);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean onCreateOptionsMenu(Menu menu) {
|
|
||||||
getMenuInflater().inflate(R.menu.encrypt_text_activity, menu);
|
|
||||||
return super.onCreateOptionsMenu(menu);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void updateModeFragment() {
|
|
||||||
getSupportFragmentManager().beginTransaction()
|
|
||||||
.replace(R.id.encrypt_mode,
|
|
||||||
mCurrentMode == MODE_SYMMETRIC
|
|
||||||
? new EncryptSymmetricFragment()
|
|
||||||
: new EncryptAsymmetricFragment()
|
|
||||||
)
|
|
||||||
.commitAllowingStateLoss();
|
|
||||||
getSupportFragmentManager().executePendingTransactions();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean onOptionsItemSelected(MenuItem item) {
|
|
||||||
if (item.isCheckable()) {
|
|
||||||
item.setChecked(!item.isChecked());
|
|
||||||
}
|
|
||||||
switch (item.getItemId()) {
|
|
||||||
case R.id.check_use_symmetric: {
|
|
||||||
mCurrentMode = item.isChecked() ? MODE_SYMMETRIC : MODE_ASYMMETRIC;
|
|
||||||
updateModeFragment();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case R.id.check_enable_compression: {
|
|
||||||
mUseCompression = item.isChecked();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
// case R.id.check_hidden_recipients: {
|
|
||||||
// mHiddenRecipients = item.isChecked();
|
|
||||||
// notifyUpdate();
|
|
||||||
// break;
|
|
||||||
// }
|
|
||||||
default: {
|
|
||||||
return super.onOptionsItemSelected(item);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handles all actions with this intent
|
* Handles all actions with this intent
|
||||||
*
|
*
|
||||||
* @param intent
|
* @param intent
|
||||||
*/
|
*/
|
||||||
private void handleActions(Intent intent) {
|
private void handleActions(Intent intent, Bundle savedInstanceState) {
|
||||||
String action = intent.getAction();
|
String action = intent.getAction();
|
||||||
Bundle extras = intent.getExtras();
|
Bundle extras = intent.getExtras();
|
||||||
String type = intent.getType();
|
String type = intent.getType();
|
||||||
@ -379,19 +105,61 @@ public class EncryptTextActivity extends EncryptActivity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
String textData = extras.getString(EXTRA_TEXT);
|
String textData = extras.getString(EXTRA_TEXT);
|
||||||
|
if (ACTION_ENCRYPT_TEXT.equals(action) && textData == null) {
|
||||||
|
Log.e(Constants.TAG, "Include the extra 'text' in your Intent!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// preselect keys given by intent
|
// preselect keys given by intent
|
||||||
mSigningKeyId = extras.getLong(EXTRA_SIGNATURE_KEY_ID);
|
long mSigningKeyId = extras.getLong(EXTRA_SIGNATURE_KEY_ID);
|
||||||
mEncryptionKeyIds = extras.getLongArray(EXTRA_ENCRYPTION_KEY_IDS);
|
long[] mEncryptionKeyIds = extras.getLongArray(EXTRA_ENCRYPTION_KEY_IDS);
|
||||||
|
|
||||||
/**
|
|
||||||
* Main Actions
|
if (savedInstanceState == null) {
|
||||||
*/
|
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
|
||||||
if (ACTION_ENCRYPT_TEXT.equals(action) && textData != null) {
|
|
||||||
mMessage = textData;
|
mModeFragment = EncryptModeAsymmetricFragment.newInstance(mSigningKeyId, mEncryptionKeyIds);
|
||||||
} else if (ACTION_ENCRYPT_TEXT.equals(action)) {
|
transaction.replace(R.id.encrypt_mode_container, mModeFragment, "mode");
|
||||||
Log.e(Constants.TAG, "Include the extra 'text' in your Intent!");
|
|
||||||
|
mEncryptFragment = EncryptTextFragment.newInstance(textData);
|
||||||
|
transaction.replace(R.id.encrypt_text_container, mEncryptFragment, "text");
|
||||||
|
|
||||||
|
transaction.commit();
|
||||||
|
|
||||||
|
getSupportFragmentManager().executePendingTransactions();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onModeChanged(boolean symmetric) {
|
||||||
|
// switch fragments
|
||||||
|
getSupportFragmentManager().beginTransaction()
|
||||||
|
.replace(R.id.encrypt_mode_container,
|
||||||
|
symmetric
|
||||||
|
? EncryptModeSymmetricFragment.newInstance()
|
||||||
|
: EncryptModeAsymmetricFragment.newInstance(0, null)
|
||||||
|
)
|
||||||
|
.commitAllowingStateLoss();
|
||||||
|
getSupportFragmentManager().executePendingTransactions();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onSignatureKeyIdChanged(long signatureKeyId) {
|
||||||
|
mEncryptFragment.setSigningKeyId(signatureKeyId);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEncryptionKeyIdsChanged(long[] encryptionKeyIds) {
|
||||||
|
mEncryptFragment.setEncryptionKeyIds(encryptionKeyIds);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEncryptionUserIdsChanged(String[] encryptionUserIds) {
|
||||||
|
mEncryptFragment.setEncryptionUserIds(encryptionUserIds);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onPassphraseChanged(Passphrase passphrase) {
|
||||||
|
mEncryptFragment.setPassphrase(passphrase);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2014 Dominik Schürmann <dominik@dominikschuermann.de>
|
* Copyright (C) 2014-2015 Dominik Schürmann <dominik@dominikschuermann.de>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -18,32 +18,102 @@
|
|||||||
package org.sufficientlysecure.keychain.ui;
|
package org.sufficientlysecure.keychain.ui;
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
|
import android.app.ProgressDialog;
|
||||||
|
import android.content.Intent;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.support.v4.app.Fragment;
|
import android.os.Message;
|
||||||
|
import android.os.Messenger;
|
||||||
import android.text.Editable;
|
import android.text.Editable;
|
||||||
import android.text.TextWatcher;
|
import android.text.TextWatcher;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.Menu;
|
||||||
|
import android.view.MenuInflater;
|
||||||
import android.view.MenuItem;
|
import android.view.MenuItem;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
|
import org.spongycastle.bcpg.CompressionAlgorithmTags;
|
||||||
|
import org.sufficientlysecure.keychain.Constants;
|
||||||
import org.sufficientlysecure.keychain.R;
|
import org.sufficientlysecure.keychain.R;
|
||||||
|
import org.sufficientlysecure.keychain.compatibility.ClipboardReflection;
|
||||||
|
import org.sufficientlysecure.keychain.operations.results.PgpSignEncryptResult;
|
||||||
|
import org.sufficientlysecure.keychain.operations.results.SignEncryptResult;
|
||||||
|
import org.sufficientlysecure.keychain.pgp.KeyRing;
|
||||||
|
import org.sufficientlysecure.keychain.pgp.PgpConstants;
|
||||||
|
import org.sufficientlysecure.keychain.pgp.SignEncryptParcel;
|
||||||
|
import org.sufficientlysecure.keychain.service.KeychainIntentService;
|
||||||
|
import org.sufficientlysecure.keychain.service.ServiceProgressHandler;
|
||||||
|
import org.sufficientlysecure.keychain.service.input.CryptoInputParcel;
|
||||||
|
import org.sufficientlysecure.keychain.ui.dialog.ProgressDialogFragment;
|
||||||
|
import org.sufficientlysecure.keychain.ui.util.Notify;
|
||||||
|
import org.sufficientlysecure.keychain.util.Log;
|
||||||
|
import org.sufficientlysecure.keychain.util.Passphrase;
|
||||||
|
import org.sufficientlysecure.keychain.util.ShareHelper;
|
||||||
|
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
public class EncryptTextFragment extends CryptoOperationFragment {
|
||||||
|
|
||||||
|
public interface IMode {
|
||||||
|
public void onModeChanged(boolean symmetric);
|
||||||
|
}
|
||||||
|
|
||||||
public class EncryptTextFragment extends Fragment {
|
|
||||||
public static final String ARG_TEXT = "text";
|
public static final String ARG_TEXT = "text";
|
||||||
|
|
||||||
|
private IMode mModeInterface;
|
||||||
|
|
||||||
|
private boolean mSymmetricMode = true;
|
||||||
|
private boolean mShareAfterEncrypt = false;
|
||||||
|
private boolean mUseCompression = true;
|
||||||
|
private boolean mHiddenRecipients = false;
|
||||||
|
|
||||||
|
private long mEncryptionKeyIds[] = null;
|
||||||
|
private String mEncryptionUserIds[] = null;
|
||||||
|
// TODO Constants.key.none? What's wrong with a null value?
|
||||||
|
private long mSigningKeyId = Constants.key.none;
|
||||||
|
private Passphrase mPassphrase = new Passphrase();
|
||||||
|
private String mMessage = "";
|
||||||
|
|
||||||
private TextView mText;
|
private TextView mText;
|
||||||
|
|
||||||
private EncryptActivityInterface mEncryptInterface;
|
public void setEncryptionKeyIds(long[] encryptionKeyIds) {
|
||||||
|
mEncryptionKeyIds = encryptionKeyIds;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEncryptionUserIds(String[] encryptionUserIds) {
|
||||||
|
mEncryptionUserIds = encryptionUserIds;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSigningKeyId(long signingKeyId) {
|
||||||
|
mSigningKeyId = signingKeyId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPassphrase(Passphrase passphrase) {
|
||||||
|
mPassphrase = passphrase;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates new instance of this fragment
|
||||||
|
*/
|
||||||
|
public static EncryptTextFragment newInstance(String text) {
|
||||||
|
EncryptTextFragment frag = new EncryptTextFragment();
|
||||||
|
|
||||||
|
Bundle args = new Bundle();
|
||||||
|
args.putString(ARG_TEXT, text);
|
||||||
|
frag.setArguments(args);
|
||||||
|
|
||||||
|
return frag;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onAttach(Activity activity) {
|
public void onAttach(Activity activity) {
|
||||||
super.onAttach(activity);
|
super.onAttach(activity);
|
||||||
try {
|
try {
|
||||||
mEncryptInterface = (EncryptActivityInterface) activity;
|
mModeInterface = (IMode) activity;
|
||||||
} catch (ClassCastException e) {
|
} catch (ClassCastException e) {
|
||||||
throw new ClassCastException(activity.toString() + " must implement EncryptActivityInterface");
|
throw new ClassCastException(activity.toString() + " must implement IMode");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -54,6 +124,9 @@ public class EncryptTextFragment extends Fragment {
|
|||||||
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
||||||
View view = inflater.inflate(R.layout.encrypt_text_fragment, container, false);
|
View view = inflater.inflate(R.layout.encrypt_text_fragment, container, false);
|
||||||
|
|
||||||
|
if (mMessage != null) {
|
||||||
|
mText.setText(mMessage);
|
||||||
|
}
|
||||||
mText = (TextView) view.findViewById(R.id.encrypt_text_text);
|
mText = (TextView) view.findViewById(R.id.encrypt_text_text);
|
||||||
mText.addTextChangedListener(new TextWatcher() {
|
mText.addTextChangedListener(new TextWatcher() {
|
||||||
@Override
|
@Override
|
||||||
@ -68,7 +141,7 @@ public class EncryptTextFragment extends Fragment {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void afterTextChanged(Editable s) {
|
public void afterTextChanged(Editable s) {
|
||||||
mEncryptInterface.setMessage(s.toString());
|
mMessage = s.toString();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -78,29 +151,43 @@ public class EncryptTextFragment extends Fragment {
|
|||||||
@Override
|
@Override
|
||||||
public void onCreate(Bundle savedInstanceState) {
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
|
mMessage = getArguments().getString(ARG_TEXT);
|
||||||
|
|
||||||
setHasOptionsMenu(true);
|
setHasOptionsMenu(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onActivityCreated(Bundle savedInstanceState) {
|
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
|
||||||
super.onActivityCreated(savedInstanceState);
|
super.onCreateOptionsMenu(menu, inflater);
|
||||||
|
inflater.inflate(R.menu.encrypt_text_activity, menu);
|
||||||
String text = mEncryptInterface.getMessage();
|
|
||||||
if (text != null) {
|
|
||||||
mText.setText(text);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onOptionsItemSelected(MenuItem item) {
|
public boolean onOptionsItemSelected(MenuItem item) {
|
||||||
|
if (item.isCheckable()) {
|
||||||
|
item.setChecked(!item.isChecked());
|
||||||
|
}
|
||||||
switch (item.getItemId()) {
|
switch (item.getItemId()) {
|
||||||
|
case R.id.check_use_symmetric: {
|
||||||
|
mSymmetricMode = item.isChecked();
|
||||||
|
mModeInterface.onModeChanged(mSymmetricMode);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case R.id.check_enable_compression: {
|
||||||
|
mUseCompression = item.isChecked();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// case R.id.check_hidden_recipients: {
|
||||||
|
// mHiddenRecipients = item.isChecked();
|
||||||
|
// notifyUpdate();
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
case R.id.encrypt_copy: {
|
case R.id.encrypt_copy: {
|
||||||
mEncryptInterface.startEncrypt(false);
|
startEncrypt(false);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case R.id.encrypt_share: {
|
case R.id.encrypt_share: {
|
||||||
mEncryptInterface.startEncrypt(true);
|
startEncrypt(true);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default: {
|
default: {
|
||||||
@ -109,4 +196,222 @@ public class EncryptTextFragment extends Fragment {
|
|||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
protected void onEncryptSuccess(SignEncryptResult result) {
|
||||||
|
if (mShareAfterEncrypt) {
|
||||||
|
// Share encrypted message/file
|
||||||
|
startActivity(sendWithChooserExcludingEncrypt(result.getResultBytes()));
|
||||||
|
} else {
|
||||||
|
// Copy to clipboard
|
||||||
|
copyToClipboard(result.getResultBytes());
|
||||||
|
result.createNotify(getActivity()).show();
|
||||||
|
// Notify.create(EncryptTextActivity.this,
|
||||||
|
// R.string.encrypt_sign_clipboard_successful, Notify.Style.OK)
|
||||||
|
// .show(getSupportFragmentManager().findFragmentById(R.id.encrypt_text_fragment));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected SignEncryptParcel createEncryptBundle() {
|
||||||
|
// fill values for this action
|
||||||
|
SignEncryptParcel data = new SignEncryptParcel();
|
||||||
|
|
||||||
|
data.setBytes(mMessage.getBytes());
|
||||||
|
data.setCleartextSignature(true);
|
||||||
|
|
||||||
|
if (mUseCompression) {
|
||||||
|
data.setCompressionId(PgpConstants.sPreferredCompressionAlgorithms.get(0));
|
||||||
|
} else {
|
||||||
|
data.setCompressionId(CompressionAlgorithmTags.UNCOMPRESSED);
|
||||||
|
}
|
||||||
|
data.setHiddenRecipients(mHiddenRecipients);
|
||||||
|
data.setSymmetricEncryptionAlgorithm(PgpConstants.OpenKeychainSymmetricKeyAlgorithmTags.USE_PREFERRED);
|
||||||
|
data.setSignatureHashAlgorithm(PgpConstants.OpenKeychainSymmetricKeyAlgorithmTags.USE_PREFERRED);
|
||||||
|
|
||||||
|
// Always use armor for messages
|
||||||
|
data.setEnableAsciiArmorOutput(true);
|
||||||
|
|
||||||
|
if (mSymmetricMode) {
|
||||||
|
Log.d(Constants.TAG, "Symmetric encryption enabled!");
|
||||||
|
Passphrase passphrase = mPassphrase;
|
||||||
|
if (passphrase.isEmpty()) {
|
||||||
|
passphrase = null;
|
||||||
|
}
|
||||||
|
data.setSymmetricPassphrase(passphrase);
|
||||||
|
} else {
|
||||||
|
data.setEncryptionMasterKeyIds(mEncryptionKeyIds);
|
||||||
|
data.setSignatureMasterKeyId(mSigningKeyId);
|
||||||
|
// data.setSignaturePassphrase(mSigningKeyPassphrase);
|
||||||
|
}
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void copyToClipboard(byte[] resultBytes) {
|
||||||
|
ClipboardReflection.copyToClipboard(getActivity(), new String(resultBytes));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create Intent Chooser but exclude OK's EncryptActivity.
|
||||||
|
*/
|
||||||
|
private Intent sendWithChooserExcludingEncrypt(byte[] resultBytes) {
|
||||||
|
Intent prototype = createSendIntent(resultBytes);
|
||||||
|
String title = getString(R.string.title_share_message);
|
||||||
|
|
||||||
|
// we don't want to encrypt the encrypted, no inception ;)
|
||||||
|
String[] blacklist = new String[]{
|
||||||
|
Constants.PACKAGE_NAME + ".ui.EncryptTextActivity",
|
||||||
|
"org.thialfihar.android.apg.ui.EncryptActivity"
|
||||||
|
};
|
||||||
|
|
||||||
|
return new ShareHelper(getActivity()).createChooserExcluding(prototype, title, blacklist);
|
||||||
|
}
|
||||||
|
|
||||||
|
private Intent createSendIntent(byte[] resultBytes) {
|
||||||
|
Intent sendIntent;
|
||||||
|
sendIntent = new Intent(Intent.ACTION_SEND);
|
||||||
|
sendIntent.setType(Constants.ENCRYPTED_TEXT_MIME);
|
||||||
|
sendIntent.putExtra(Intent.EXTRA_TEXT, new String(resultBytes));
|
||||||
|
|
||||||
|
if (!mSymmetricMode && mEncryptionUserIds != null) {
|
||||||
|
Set<String> users = new HashSet<>();
|
||||||
|
for (String user : mEncryptionUserIds) {
|
||||||
|
KeyRing.UserId userId = KeyRing.splitUserId(user);
|
||||||
|
if (userId.email != null) {
|
||||||
|
users.add(userId.email);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// pass trough email addresses as extra for email applications
|
||||||
|
sendIntent.putExtra(Intent.EXTRA_EMAIL, users.toArray(new String[users.size()]));
|
||||||
|
}
|
||||||
|
return sendIntent;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected boolean inputIsValid() {
|
||||||
|
if (mMessage == null) {
|
||||||
|
Notify.create(getActivity(), R.string.error_message, Notify.Style.ERROR)
|
||||||
|
.show(this);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mSymmetricMode) {
|
||||||
|
// symmetric encryption checks
|
||||||
|
|
||||||
|
if (mPassphrase == null) {
|
||||||
|
Notify.create(getActivity(), R.string.passphrases_do_not_match, Notify.Style.ERROR)
|
||||||
|
.show(this);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (mPassphrase.isEmpty()) {
|
||||||
|
Notify.create(getActivity(), R.string.passphrase_must_not_be_empty, Notify.Style.ERROR)
|
||||||
|
.show(this);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
// asymmetric encryption checks
|
||||||
|
|
||||||
|
boolean gotEncryptionKeys = (mEncryptionKeyIds != null
|
||||||
|
&& mEncryptionKeyIds.length > 0);
|
||||||
|
|
||||||
|
if (!gotEncryptionKeys && mSigningKeyId == 0) {
|
||||||
|
Notify.create(getActivity(), R.string.select_encryption_or_signature_key, Notify.Style.ERROR)
|
||||||
|
.show(this);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public void startEncrypt(boolean share) {
|
||||||
|
mShareAfterEncrypt = share;
|
||||||
|
startEncrypt();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void startEncrypt() {
|
||||||
|
cryptoOperation(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void cryptoOperation(CryptoInputParcel cryptoInput) {
|
||||||
|
if (!inputIsValid()) {
|
||||||
|
// Notify was created by inputIsValid.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Send all information needed to service to edit key in other thread
|
||||||
|
Intent intent = new Intent(getActivity(), KeychainIntentService.class);
|
||||||
|
intent.setAction(KeychainIntentService.ACTION_SIGN_ENCRYPT);
|
||||||
|
|
||||||
|
final SignEncryptParcel input = createEncryptBundle();
|
||||||
|
if (cryptoInput != null) {
|
||||||
|
input.setCryptoInput(cryptoInput);
|
||||||
|
}
|
||||||
|
|
||||||
|
Bundle data = new Bundle();
|
||||||
|
data.putParcelable(KeychainIntentService.SIGN_ENCRYPT_PARCEL, input);
|
||||||
|
intent.putExtra(KeychainIntentService.EXTRA_DATA, data);
|
||||||
|
|
||||||
|
// Message is received after encrypting is done in KeychainIntentService
|
||||||
|
ServiceProgressHandler serviceHandler = new ServiceProgressHandler(
|
||||||
|
getActivity(),
|
||||||
|
getString(R.string.progress_encrypting),
|
||||||
|
ProgressDialog.STYLE_HORIZONTAL,
|
||||||
|
ProgressDialogFragment.ServiceType.KEYCHAIN_INTENT) {
|
||||||
|
public void handleMessage(Message message) {
|
||||||
|
// handle messages by standard KeychainIntentServiceHandler first
|
||||||
|
super.handleMessage(message);
|
||||||
|
|
||||||
|
// handle pending messages
|
||||||
|
if (handlePendingMessage(message)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (message.arg1 == MessageStatus.OKAY.ordinal()) {
|
||||||
|
SignEncryptResult result =
|
||||||
|
message.getData().getParcelable(SignEncryptResult.EXTRA_RESULT);
|
||||||
|
|
||||||
|
PgpSignEncryptResult pgpResult = result.getPending();
|
||||||
|
|
||||||
|
// if (pgpResult != null && pgpResult.isPending()) {
|
||||||
|
// if ((pgpResult.getResult() & PgpSignEncryptResult.RESULT_PENDING_PASSPHRASE) ==
|
||||||
|
// PgpSignEncryptResult.RESULT_PENDING_PASSPHRASE) {
|
||||||
|
// startPassphraseDialog(pgpResult.getKeyIdPassphraseNeeded());
|
||||||
|
// } else if ((pgpResult.getResult() & PgpSignEncryptResult.RESULT_PENDING_NFC) ==
|
||||||
|
// PgpSignEncryptResult.RESULT_PENDING_NFC) {
|
||||||
|
//
|
||||||
|
// RequiredInputParcel parcel = RequiredInputParcel.createNfcSignOperation(
|
||||||
|
// pgpResult.getNfcHash(),
|
||||||
|
// pgpResult.getNfcAlgo(),
|
||||||
|
// input.getSignatureTime());
|
||||||
|
// startNfcSign(pgpResult.getNfcKeyId(), parcel);
|
||||||
|
//
|
||||||
|
// } else {
|
||||||
|
// throw new RuntimeException("Unhandled pending result!");
|
||||||
|
// }
|
||||||
|
// return;
|
||||||
|
// }
|
||||||
|
|
||||||
|
if (result.success()) {
|
||||||
|
onEncryptSuccess(result);
|
||||||
|
} else {
|
||||||
|
result.createNotify(getActivity()).show();
|
||||||
|
}
|
||||||
|
|
||||||
|
// no matter the result, reset parameters
|
||||||
|
// mSigningKeyPassphrase = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
// Create a new Messenger for the communication back
|
||||||
|
Messenger messenger = new Messenger(serviceHandler);
|
||||||
|
intent.putExtra(KeychainIntentService.EXTRA_MESSENGER, messenger);
|
||||||
|
|
||||||
|
// show progress dialog
|
||||||
|
serviceHandler.showProgressDialog(getActivity());
|
||||||
|
|
||||||
|
// start service with intent
|
||||||
|
getActivity().startService(intent);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -23,14 +23,13 @@
|
|||||||
<include layout="@layout/notify_area" />
|
<include layout="@layout/notify_area" />
|
||||||
|
|
||||||
<FrameLayout
|
<FrameLayout
|
||||||
android:id="@+id/encrypt_mode"
|
android:id="@+id/encrypt_mode_container"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:orientation="vertical" />
|
android:orientation="vertical" />
|
||||||
|
|
||||||
<fragment
|
<FrameLayout
|
||||||
android:id="@+id/encrypt_text_fragment"
|
android:id="@+id/encrypt_text_container"
|
||||||
android:name="org.sufficientlysecure.keychain.ui.EncryptTextFragment"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent" />
|
android:layout_height="match_parent" />
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user