1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-16 08:34:53 +02:00

OpenPgpMessageInputStream: Source verification certs from ConsumerOptions.getCertificateSource()

This commit is contained in:
Paul Schaub 2022-11-11 14:20:17 +01:00
parent e8b44f7438
commit 7d48301071
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -1018,11 +1018,9 @@ public class OpenPgpMessageInputStream extends DecryptionStream {
} }
private PGPPublicKeyRing findCertificate(long keyId) { private PGPPublicKeyRing findCertificate(long keyId) {
for (PGPPublicKeyRing cert : options.getCertificates()) { PGPPublicKeyRing cert = options.getCertificateSource().getCertificate(keyId);
PGPPublicKey verificationKey = cert.getPublicKey(keyId); if (cert != null) {
if (verificationKey != null) { return cert;
return cert;
}
} }
if (options.getMissingCertificateCallback() != null) { if (options.getMissingCertificateCallback() != null) {