mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-06 17:25:05 -05:00
save fingerprint on save
This commit is contained in:
parent
c4340b2379
commit
b87f0b2658
@ -306,6 +306,7 @@ public class ProviderHelper {
|
||||
values.put(Keys.KEY_RING_ROW_ID, keyRingRowId);
|
||||
values.put(Keys.KEY_DATA, key.getEncoded());
|
||||
values.put(Keys.RANK, rank);
|
||||
values.put(Keys.FINGERPRINT, key.getFingerprint());
|
||||
|
||||
Uri uri = Keys.buildPublicKeysUri(Long.toString(keyRingRowId));
|
||||
|
||||
@ -357,6 +358,7 @@ public class ProviderHelper {
|
||||
values.put(Keys.KEY_RING_ROW_ID, keyRingRowId);
|
||||
values.put(Keys.KEY_DATA, key.getEncoded());
|
||||
values.put(Keys.RANK, rank);
|
||||
values.put(Keys.FINGERPRINT, key.getPublicKey().getFingerprint());
|
||||
|
||||
Uri uri = Keys.buildSecretKeysUri(Long.toString(keyRingRowId));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user