1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-18 01:24:50 +02:00

DFix KeyRingInfo.getValidAndExpiredUserIds considering unbound user-ids as valid

This commit is contained in:
Paul Schaub 2022-03-13 16:52:57 +01:00
parent 5b4018d2f0
commit 82fb93eea3

View file

@ -346,6 +346,11 @@ public class KeyRingInfo {
PGPSignature certification = signatures.userIdCertifications.get(userId);
PGPSignature revocation = signatures.userIdRevocations.get(userId);
// Unbound user-id
if (certification == null) {
continue;
}
// Not revoked -> valid
if (revocation == null) {
probablyExpired.add(userId);