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

OpenPgpMessageInputStream: Source verification certs from ConsumerOptions.getCertificateSource()

This commit is contained in:
Paul Schaub 2022-11-11 14:20:17 +01:00
parent a792952845
commit d7e4fcaec6

View file

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