mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-10 14:35:59 +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();
|
PGPSignature revocation = primaryKeyRevocationIterator.next();
|
||||||
if (revocation.getKeyID() != primaryKey.getKeyID()) {
|
if (revocation.getKeyID() != primaryKey.getKeyID()) {
|
||||||
// Revocation was not made by primary key, skip
|
// Revocation was not made by primary key, skip
|
||||||
|
continue;
|
||||||
// TODO: What about external revocation keys?
|
// TODO: What about external revocation keys?
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue