just skip foreign uid certifications during import for now
Related to #836, fix still pending
This commit is contained in:
@@ -472,6 +472,10 @@ public class ProviderHelper {
|
|||||||
// verify signatures from known private keys
|
// verify signatures from known private keys
|
||||||
if (trustedKeys.indexOfKey(certId) >= 0) {
|
if (trustedKeys.indexOfKey(certId) >= 0) {
|
||||||
CanonicalizedPublicKey trustedKey = trustedKeys.get(certId);
|
CanonicalizedPublicKey trustedKey = trustedKeys.get(certId);
|
||||||
|
if (cert.isRevocation()) {
|
||||||
|
// skip for now
|
||||||
|
continue;
|
||||||
|
}
|
||||||
cert.init(trustedKey);
|
cert.init(trustedKey);
|
||||||
if (cert.verifySignature(masterKey, rawUserId)) {
|
if (cert.verifySignature(masterKey, rawUserId)) {
|
||||||
item.trustedCerts.add(cert);
|
item.trustedCerts.add(cert);
|
||||||
|
|||||||
Reference in New Issue
Block a user