summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openpgp/src/message/mod.rs5
-rw-r--r--tool/Cargo.toml1
2 files changed, 6 insertions, 0 deletions
diff --git a/openpgp/src/message/mod.rs b/openpgp/src/message/mod.rs
index fb793dd4..5f06a52c 100644
--- a/openpgp/src/message/mod.rs
+++ b/openpgp/src/message/mod.rs
@@ -603,6 +603,11 @@ mod tests {
result: true,
},
TestVector {
+ s: &[(OnePassSig, 0), (CompressedData, 0), (Literal, 1),
+ (Signature, 0)],
+ result: true,
+ },
+ TestVector {
s: &[(OnePassSig, 0), (OnePassSig, 0), (Literal, 0),
(Signature, 0), (Signature, 0)],
result: true,
diff --git a/tool/Cargo.toml b/tool/Cargo.toml
index 3467d48e..d5a18935 100644
--- a/tool/Cargo.toml
+++ b/tool/Cargo.toml
@@ -13,6 +13,7 @@ clap = "2.32.0"
failure = "0.1.2"
prettytable-rs = "0.7.0"
rpassword = "2.0.0"
+tempfile = "3.0.4"
time = "0.1.38"
[build-dependencies]