summaryrefslogtreecommitdiffstats
path: root/tool/src/commands/decrypt.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-01-15 17:52:00 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-01-18 14:24:48 +0100
commit6bf3deb539ac91bba56efa57127c6c0567cf161c (patch)
treea94628796020071e2210b9c6a8d5c57b067e696e /tool/src/commands/decrypt.rs
parent94c64d7a831227888c2ab6b5fe9ec0c29781caec (diff)
openpgp: Use Cert::keys instead of Cert::subkeys.
Diffstat (limited to 'tool/src/commands/decrypt.rs')
-rw-r--r--tool/src/commands/decrypt.rs33
1 files changed, 8 insertions, 25 deletions
diff --git a/tool/src/commands/decrypt.rs b/tool/src/commands/decrypt.rs
index 325a657d..4c378a34 100644
--- a/tool/src/commands/decrypt.rs
+++ b/tool/src/commands/decrypt.rs
@@ -44,40 +44,23 @@ impl<'a> Helper<'a> {
let mut identities: HashMap<KeyID, Fingerprint> = HashMap::new();
let mut hints: HashMap<KeyID, String> = HashMap::new();
for tsk in secrets {
- fn can_encrypt<R, P>(_: &Key<P, R>, sig: Option<&Signature>) -> bool
- where P: key::KeyParts,
- R: key::KeyRole,
- {
- if let Some(sig) = sig {
- sig.key_flags().for_storage_encryption()
- || sig.key_flags().for_transport_encryption()
- } else {
- false
- }
- }
-
let hint = match tsk.userids().nth(0) {
Some(uid) => format!("{} ({})", uid.userid(),
KeyID::from(tsk.fingerprint())),
None => format!("{}", KeyID::from(tsk.fingerprint())),
};
- if can_encrypt(tsk.primary(), tsk.primary_key_signature(None)) {
- let id: KeyID = tsk.fingerprint().into();
- keys.insert(id.clone(), tsk.primary().clone().into());
+ for ka in tsk.keys()
+ // XXX: Should use the message's creation time that we do not know.
+ .policy(None)
+ .for_transport_encryption().for_storage_encryption()
+ .secret()
+ {
+ let id: KeyID = ka.key().fingerprint().into();
+ keys.insert(id.clone(), ka.key().clone().into());
identities.insert(id.clone(), tsk.fingerprint());
hints.insert(id, hint.clone());
}
-
- for skb in tsk.subkeys() {
- let key = skb.key();
- if can_encrypt(key, skb.binding_signature(None)) {
- let id: KeyID = key.fingerprint().into();
- keys.insert(id.clone(), key.clone().into());
- identities.insert(id.clone(), tsk.fingerprint());
- hints.insert(id, hint.clone());
- }
- }
}
Helper {