mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-26 14:22:05 +01:00
DFix KeyRingInfo.getValidAndExpiredUserIds considering unbound user-ids as valid
This commit is contained in:
parent
26c804b2dd
commit
661c043cdc
1 changed files with 5 additions and 0 deletions
|
@ -347,6 +347,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);
|
||||
|
|
Loading…
Reference in a new issue