Remove DECRYPT_ASSUME_SYMMETRIC

This commit is contained in:
Dominik Schürmann 2014-04-01 16:18:16 +02:00
parent 53605855ee
commit acc2e208cf
2 changed files with 0 additions and 6 deletions

View File

@ -182,9 +182,6 @@ public class DecryptFileFragment extends DecryptFragment {
data.putString(KeychainIntentService.DECRYPT_PASSPHRASE, passphrase);
// TODO
data.putBoolean(KeychainIntentService.DECRYPT_ASSUME_SYMMETRIC, false);
intent.putExtra(KeychainIntentService.EXTRA_DATA, data);
// Message is received after encrypting is done in KeychainIntentService

View File

@ -129,9 +129,6 @@ public class DecryptMessageFragment extends DecryptFragment {
data.putByteArray(KeychainIntentService.DECRYPT_CIPHERTEXT_BYTES, message.getBytes());
data.putString(KeychainIntentService.DECRYPT_PASSPHRASE, passphrase);
// TODO
data.putBoolean(KeychainIntentService.DECRYPT_ASSUME_SYMMETRIC, false);
intent.putExtra(KeychainIntentService.EXTRA_DATA, data);
// Message is received after encrypting is done in KeychainIntentService