mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-05 00:35:08 -05:00
just skip foreign uid certifications during import for now
Related to #836, fix still pending
This commit is contained in:
parent
df21b258ae
commit
e2675caf23
@ -472,6 +472,10 @@ public class ProviderHelper {
|
||||
// verify signatures from known private keys
|
||||
if (trustedKeys.indexOfKey(certId) >= 0) {
|
||||
CanonicalizedPublicKey trustedKey = trustedKeys.get(certId);
|
||||
if (cert.isRevocation()) {
|
||||
// skip for now
|
||||
continue;
|
||||
}
|
||||
cert.init(trustedKey);
|
||||
if (cert.verifySignature(masterKey, rawUserId)) {
|
||||
item.trustedCerts.add(cert);
|
||||
|
Loading…
Reference in New Issue
Block a user