mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-22 12:22:06 +01:00
CertificateValidator: Skip revocation signatures not made by primary key
This commit is contained in:
parent
495ff6aa5d
commit
e08505e07d
1 changed files with 1 additions and 0 deletions
|
@ -74,6 +74,7 @@ public final class CertificateValidator {
|
|||
PGPSignature revocation = primaryKeyRevocationIterator.next();
|
||||
if (revocation.getKeyID() != primaryKey.getKeyID()) {
|
||||
// Revocation was not made by primary key, skip
|
||||
continue;
|
||||
// TODO: What about external revocation keys?
|
||||
}
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue