mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
sm: Also show the SHA-256 fingerprint.
* sm/keylist.c (list_cert_colon): Emit a new "fp2" record.
(list_cert_raw): Print the SHA2 fingerprint.
(list_cert_std): Ditto.
--
Signed-off-by: Werner Koch <wk@gnupg.org>
Backported-from-master: e7d7092390
Here in 2.2 we keep the string "fingerprint:" and no not change it to
"sha1 fpr" as we did in master (2.3).
This commit is contained in:
parent
b2590f2e47
commit
9c57de75cf
2 changed files with 15 additions and 2 deletions
12
sm/keylist.c
12
sm/keylist.c
|
@ -559,6 +559,10 @@ list_cert_colon (ctrl_t ctrl, ksba_cert_t cert, unsigned int validity,
|
|||
es_putc ('\n', fp);
|
||||
xfree (fpr); fpr = NULL; chain_id = NULL;
|
||||
xfree (chain_id_buffer); chain_id_buffer = NULL;
|
||||
/* SHA256 FPR record */
|
||||
fpr = gpgsm_get_fingerprint_hexstring (cert, GCRY_MD_SHA256);
|
||||
es_fprintf (fp, "fp2:::::::::%s::::\n", fpr);
|
||||
xfree (fpr); fpr = NULL;
|
||||
|
||||
/* Always print the keygrip. */
|
||||
if ( (p = gpgsm_get_keygrip_hexstring (cert)))
|
||||
|
@ -773,6 +777,10 @@ list_cert_raw (ctrl_t ctrl, KEYDB_HANDLE hd,
|
|||
es_putc ('\n', fp);
|
||||
}
|
||||
|
||||
dn = gpgsm_get_fingerprint_string (cert, GCRY_MD_SHA256);
|
||||
es_fprintf (fp, " sha2_fpr: %s\n", dn?dn:"error");
|
||||
xfree (dn);
|
||||
|
||||
dn = gpgsm_get_fingerprint_string (cert, 0);
|
||||
es_fprintf (fp, " sha1_fpr: %s\n", dn?dn:"error");
|
||||
xfree (dn);
|
||||
|
@ -1295,6 +1303,10 @@ list_cert_std (ctrl_t ctrl, ksba_cert_t cert, estream_t fp, int have_secret,
|
|||
es_fprintf (fp, " fingerprint: %s\n", dn?dn:"error");
|
||||
xfree (dn);
|
||||
|
||||
dn = gpgsm_get_fingerprint_string (cert, GCRY_MD_SHA256);
|
||||
es_fprintf (fp, " sha2 fpr: %s\n", dn?dn:"error");
|
||||
xfree (dn);
|
||||
|
||||
if (opt.with_keygrip)
|
||||
{
|
||||
dn = gpgsm_get_keygrip_hexstring (cert);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue