summaryrefslogtreecommitdiffstats
path: root/openpgp/src/packet/header/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/packet/header/mod.rs')
-rw-r--r--openpgp/src/packet/header/mod.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/openpgp/src/packet/header/mod.rs b/openpgp/src/packet/header/mod.rs
index d0df418b..61eab916 100644
--- a/openpgp/src/packet/header/mod.rs
+++ b/openpgp/src/packet/header/mod.rs
@@ -181,7 +181,9 @@ impl Header {
// 10 bytes of fixed header, plus the
// encrypted session key.
10 < l && l < 10 * 1024,
- Tag::OnePassSig if ! future_compatible => l == 13,
+ Tag::OnePassSig if ! future_compatible =>
+ l == 13 // v3
+ || (6 + 32..6 + 32 + 256).contains(&l), // v6
Tag::OnePassSig => l < 1024,
Tag::PublicKey | Tag::PublicSubkey
| Tag::SecretKey | Tag::SecretSubkey =>