summaryrefslogtreecommitdiffstats
path: root/tool/src
diff options
context:
space:
mode:
Diffstat (limited to 'tool/src')
-rw-r--r--tool/src/commands/decrypt.rs4
-rw-r--r--tool/src/commands/inspect.rs4
2 files changed, 4 insertions, 4 deletions
diff --git a/tool/src/commands/decrypt.rs b/tool/src/commands/decrypt.rs
index bde80c2b..2b0bc0c2 100644
--- a/tool/src/commands/decrypt.rs
+++ b/tool/src/commands/decrypt.rs
@@ -58,9 +58,9 @@ impl<'a> Helper<'a> {
None => format!("{}", tsk.fingerprint().to_keyid()),
};
- if can_encrypt(tsk.primary().key(), tsk.primary_key_signature(None)) {
+ if can_encrypt(tsk.primary(), tsk.primary_key_signature(None)) {
let id = tsk.fingerprint().to_keyid();
- keys.insert(id.clone(), tsk.primary().key().clone().into());
+ keys.insert(id.clone(), tsk.primary().clone().into());
identities.insert(id.clone(), tsk.fingerprint());
hints.insert(id, hint.clone());
}
diff --git a/tool/src/commands/inspect.rs b/tool/src/commands/inspect.rs
index 6d594c51..77694b0e 100644
--- a/tool/src/commands/inspect.rs
+++ b/tool/src/commands/inspect.rs
@@ -131,8 +131,8 @@ fn inspect_tpk(output: &mut io::Write, tpk: &openpgp::TPK,
writeln!(output)?;
writeln!(output, " Fingerprint: {}", tpk.fingerprint())?;
inspect_revocation(output, "", tpk.revoked(None))?;
- inspect_key(output, "", tpk.primary().key(), tpk.primary_key_signature(None),
- tpk.primary().certifications(),
+ inspect_key(output, "", tpk.primary(), tpk.primary_key_signature(None),
+ tpk.certifications(),
print_keygrips, print_certifications)?;
writeln!(output)?;