summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2022-05-20 12:29:37 +0200
committerJustus Winter <justus@sequoia-pgp.org>2022-05-20 12:29:37 +0200
commit59fe4a74cc899e9178684c5d6de8c3e7c488d4b0 (patch)
tree045e48e63058157239ae238f663033a5826604e5
parent28639cf97fe3e526c6ace7499a3117d87bc1bd8f (diff)
openpgp: Add missing forwarder.
- Fixes inspecting of packets during signature verification.
-rw-r--r--openpgp/src/parse/stream.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/openpgp/src/parse/stream.rs b/openpgp/src/parse/stream.rs
index 4d2694ae..36459f9c 100644
--- a/openpgp/src/parse/stream.rs
+++ b/openpgp/src/parse/stream.rs
@@ -886,6 +886,9 @@ impl<V: VerificationHelper> VerificationHelper for NoDecryptionHelper<V> {
{
self.v.check(structure)
}
+ fn inspect(&mut self, pp: &PacketParser) -> Result<()> {
+ self.v.inspect(pp)
+ }
}
impl<V: VerificationHelper> DecryptionHelper for NoDecryptionHelper<V> {