aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/KeychainIntentService.java
diff options
context:
space:
mode:
authorAshley Hughes <spirit.returned@gmail.com>2014-02-13 22:05:36 +0000
committerAshley Hughes <spirit.returned@gmail.com>2014-02-13 22:05:36 +0000
commit076a7ec4a16a6db5df0bbe5490d44cbd514f10c1 (patch)
tree50abf50f277c25ef5ce200c401bef8c197d42878 /OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/KeychainIntentService.java
parente150004e32d4f4278950dc2b24a9cf70885c468f (diff)
downloadopen-keychain-076a7ec4a16a6db5df0bbe5490d44cbd514f10c1.tar.gz
open-keychain-076a7ec4a16a6db5df0bbe5490d44cbd514f10c1.tar.bz2
open-keychain-076a7ec4a16a6db5df0bbe5490d44cbd514f10c1.zip
save work, this code doesn't work...
Diffstat (limited to 'OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/KeychainIntentService.java')
-rw-r--r--OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/KeychainIntentService.java11
1 files changed, 8 insertions, 3 deletions
diff --git a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/KeychainIntentService.java b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/KeychainIntentService.java
index a31ddc53e..4cace2658 100644
--- a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/KeychainIntentService.java
+++ b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/KeychainIntentService.java
@@ -54,7 +54,6 @@ import org.sufficientlysecure.keychain.ui.adapter.ImportKeysListEntry;
import org.sufficientlysecure.keychain.util.HkpKeyServer;
import org.sufficientlysecure.keychain.util.InputData;
import org.sufficientlysecure.keychain.util.Log;
-import org.sufficientlysecure.keychain.util.PositionAwareInputStream;
import org.sufficientlysecure.keychain.util.ProgressDialogUpdater;
import android.app.IntentService;
@@ -135,6 +134,9 @@ public class KeychainIntentService extends IntentService implements ProgressDial
public static final String SAVE_KEYRING_KEYS_EXPIRY_DATES = "keys_expiry_dates";
public static final String SAVE_KEYRING_MASTER_KEY_ID = "master_key_id";
public static final String SAVE_KEYRING_CAN_SIGN = "can_sign";
+ public static final String SAVE_KEYRING_ORIGINAL_IDS = "original_ids";
+ public static final String SAVE_KEYRING_DELETED_IDS = "deleted_ids";
+ public static final String SAVE_KEYRING_MODDED_KEYS = "modified_keys";
// generate key
public static final String GENERATE_KEY_ALGORITHM = "algorithm";
@@ -532,6 +534,9 @@ public class KeychainIntentService extends IntentService implements ProgressDial
.getByteArray(SAVE_KEYRING_KEYS));
ArrayList<Integer> keysUsages = data.getIntegerArrayList(SAVE_KEYRING_KEYS_USAGES);
ArrayList<GregorianCalendar> keysExpiryDates = (ArrayList<GregorianCalendar>) data.getSerializable(SAVE_KEYRING_KEYS_EXPIRY_DATES);
+ ArrayList<String> original_ids = data.getStringArrayList(SAVE_KEYRING_ORIGINAL_IDS);
+ ArrayList<String> deleted_ids = data.getStringArrayList(SAVE_KEYRING_DELETED_IDS);
+ boolean[] modded_keys = data.getBooleanArray(SAVE_KEYRING_MODDED_KEYS);
long masterKeyId = data.getLong(SAVE_KEYRING_MASTER_KEY_ID);
@@ -542,8 +547,8 @@ public class KeychainIntentService extends IntentService implements ProgressDial
ProviderHelper.getPGPSecretKeyRingByKeyId(this, masterKeyId),
oldPassPhrase, newPassPhrase);
} else {
- keyOperations.buildSecretKey(userIds, keys, keysUsages, keysExpiryDates,
- oldPassPhrase, newPassPhrase);
+ keyOperations.buildSecretKey(userIds, original_ids, deleted_ids, keys, modded_keys,
+ newPassPhrase, keysExpiryDates, oldPassPhrase, keysUsages);
}
PassphraseCacheService.addCachedPassphrase(this, masterKeyId, newPassPhrase);