fix symmetric text decryption
This commit is contained in:
@@ -153,7 +153,9 @@ public class DecryptTextFragment extends DecryptFragment {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected PgpDecryptVerifyInputParcel createOperationInput() {
|
protected PgpDecryptVerifyInputParcel createOperationInput() {
|
||||||
return new PgpDecryptVerifyInputParcel(mCiphertext.getBytes());
|
PgpDecryptVerifyInputParcel input = new PgpDecryptVerifyInputParcel(mCiphertext.getBytes());
|
||||||
|
input.setAllowSymmetricDecryption(true);
|
||||||
|
return input;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user