mirror of
https://github.com/moparisthebest/open-keychain
synced 2025-02-23 23:12:06 -05:00
fix symmetric text decryption
This commit is contained in:
parent
2d03965777
commit
84165c092e
@ -153,7 +153,9 @@ public class DecryptTextFragment extends DecryptFragment {
|
||||
|
||||
@Override
|
||||
protected PgpDecryptVerifyInputParcel createOperationInput() {
|
||||
return new PgpDecryptVerifyInputParcel(mCiphertext.getBytes());
|
||||
PgpDecryptVerifyInputParcel input = new PgpDecryptVerifyInputParcel(mCiphertext.getBytes());
|
||||
input.setAllowSymmetricDecryption(true);
|
||||
return input;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user