diff options
author | David Shaw <[email protected]> | 2003-01-14 18:13:22 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-01-14 18:13:22 +0000 |
commit | 773513c70b470f54651b77e81438d51adad6f01a (patch) | |
tree | 4391fdef87f0c721a35b928f23d711bfaecad52f /g10/keyid.c | |
parent | * g10.c (add_group): Fixed group parsing to allow more than one (diff) | |
download | gnupg-773513c70b470f54651b77e81438d51adad6f01a.tar.gz gnupg-773513c70b470f54651b77e81438d51adad6f01a.zip |
* packet.h, parse-packet.c (setup_user_id), free-packet.c (free_user_id),
keydb.h, keyid.c (namehash_from_uid): New function to rmd160-hash the
contents of a user ID packet and cache it in the uid object.
* keylist.c (list_keyblock_colon): Use namehash in field 8 of uids. Show
dates for creation (selfsig date), and expiration in fields 6 and 7.
* trustdb.c (get_validity, get_validity_counts, update_validity): Use new
namehash function rather than hashing it locally.
Diffstat (limited to 'g10/keyid.c')
-rw-r--r-- | g10/keyid.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/g10/keyid.c b/g10/keyid.c index 43e531e3e..09f24e8ea 100644 --- a/g10/keyid.c +++ b/g10/keyid.c @@ -241,6 +241,22 @@ keyid_from_sig( PKT_signature *sig, u32 *keyid ) return sig->keyid[1]; } +byte * +namehash_from_uid(PKT_user_id *uid) +{ + if(uid->namehash==NULL) + { + uid->namehash=m_alloc(20); + + if(uid->attrib_data) + rmd160_hash_buffer(uid->namehash,uid->attrib_data,uid->attrib_len); + else + rmd160_hash_buffer(uid->namehash,uid->name,uid->len); + } + + return uid->namehash; +} + /**************** * return the number of bits used in the pk */ |