summaryrefslogtreecommitdiffstats
path: root/openpgp/src/parse/parse.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/parse/parse.rs')
-rw-r--r--openpgp/src/parse/parse.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/openpgp/src/parse/parse.rs b/openpgp/src/parse/parse.rs
index ac484e42..db591304 100644
--- a/openpgp/src/parse/parse.rs
+++ b/openpgp/src/parse/parse.rs
@@ -1058,7 +1058,7 @@ impl Signature4 {
{
t!("popped a {:?} HashedReader", hash_algo);
computed_hash = Some((cookie.signature_level(),
- hash_algo, hash.clone()));
+ hash.clone()));
}
if cookie.sig_group_unused() {
@@ -1072,14 +1072,14 @@ impl Signature4 {
}
}
- if let Some((level, algo, mut hash)) = computed_hash {
+ if let Some((level, mut hash)) = computed_hash {
if let Packet::Signature(ref mut sig) = pp.packet {
sig.hash(&mut hash);
let mut digest = vec![0u8; hash.digest_size()];
hash.digest(&mut digest);
- sig.set_computed_hash(Some((algo, digest)));
+ sig.set_computed_hash(Some(digest));
sig.set_level(level);
} else {
unreachable!()
@@ -1388,12 +1388,12 @@ fn one_pass_sig_test () {
crate::fmt::to_hex(&test.hash_prefix[sigs][..], false),
crate::fmt::to_hex(sig.hash_prefix(), false));
eprintln!(" computed hash: {}",
- crate::fmt::to_hex(&sig.computed_hash().unwrap().1,
+ crate::fmt::to_hex(&sig.computed_hash().unwrap(),
false));
assert_eq!(&test.hash_prefix[sigs], sig.hash_prefix());
assert_eq!(&test.hash_prefix[sigs][..],
- &sig.computed_hash().unwrap().1[..2]);
+ &sig.computed_hash().unwrap()[..2]);
sigs += 1;
} else if one_pass_sigs > 0 {