summaryrefslogtreecommitdiffstats
path: root/openpgp/src/parse/stream.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/parse/stream.rs')
-rw-r--r--openpgp/src/parse/stream.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/openpgp/src/parse/stream.rs b/openpgp/src/parse/stream.rs
index f799a4ce..e9d26205 100644
--- a/openpgp/src/parse/stream.rs
+++ b/openpgp/src/parse/stream.rs
@@ -2719,7 +2719,10 @@ impl<'a, H: VerificationHelper + DecryptionHelper> Decryptor<'a, H> {
} else {
match sig.verify(ka.key()) {
Ok(()) => {
- if let Err(error) = self.policy.signature(&sig) {
+ if let Err(error)
+ = self.policy.signature(
+ &sig, Default::default())
+ {
t!("{:02X}{:02X}: signature rejected by policy: {}",
sigid[0], sigid[1], error);
VerificationErrorInternal::BadSignature {