summaryrefslogtreecommitdiffstats
path: root/openpgp/examples/web-of-trust.rs
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2019-04-01 19:34:19 +0200
committerNeal H. Walfield <neal@pep.foundation>2019-04-04 09:13:44 +0200
commitb0a368248e289b6f3d20fb4a7eeef9693f6c0126 (patch)
treef0f1992733cea58dd19ff2dc629e3e7f29328068 /openpgp/examples/web-of-trust.rs
parent19266d145ce2fedb63c6562ccc53848196f019eb (diff)
openpgp: Avoid key.fingerprint.to_keyid()
- Instead of using key.fingerprint.to_keyid(), use key.keyid().
Diffstat (limited to 'openpgp/examples/web-of-trust.rs')
-rw-r--r--openpgp/examples/web-of-trust.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/examples/web-of-trust.rs b/openpgp/examples/web-of-trust.rs
index eee9fffa..bfdd1558 100644
--- a/openpgp/examples/web-of-trust.rs
+++ b/openpgp/examples/web-of-trust.rs
@@ -36,7 +36,7 @@ fn main() {
for tpk in parser {
match tpk {
Ok(tpk) => {
- let keyid = tpk.fingerprint().to_keyid();
+ let keyid = tpk.keyid();
for uidb in tpk.userids() {
for tps in uidb.certifications() {
if let Some(issuer) = tps.get_issuer() {