summaryrefslogtreecommitdiffstats
path: root/openpgp/examples
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/examples')
-rw-r--r--openpgp/examples/decrypt-with.rs3
-rw-r--r--openpgp/examples/web-of-trust.rs2
2 files changed, 2 insertions, 3 deletions
diff --git a/openpgp/examples/decrypt-with.rs b/openpgp/examples/decrypt-with.rs
index 3d6118f0..3828e47f 100644
--- a/openpgp/examples/decrypt-with.rs
+++ b/openpgp/examples/decrypt-with.rs
@@ -63,8 +63,7 @@ impl Helper {
{
// This only works for unencrypted secret keys.
if let Ok(keypair) = key.clone().into_keypair() {
- keys.insert(key.fingerprint().to_keyid(),
- keypair);
+ keys.insert(key.keyid(), keypair);
}
}
}
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() {