1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

Print the hash algorithm in colon mode key listing.

* g10/keylist.c (list_keyblock_colon): Print digest_algo.
This commit is contained in:
Werner Koch 2012-05-24 10:13:39 +02:00
parent f8a8c71c41
commit fc00d3fcb2
3 changed files with 10 additions and 8 deletions

View file

@ -1398,20 +1398,16 @@ list_keyblock_colon (KBNODE keyblock, int secret, int fpr)
es_write_sanitized (es_stdout, p, n, ":", NULL);
xfree (p);
}
es_fprintf (es_stdout, ":%02x%c:", sig->sig_class,
es_fprintf (es_stdout, ":%02x%c::", sig->sig_class,
sig->flags.exportable ? 'x' : 'l');
if (opt.no_sig_cache && opt.check_sigs && fprokay)
{
es_putc (':', es_stdout);
for (i = 0; i < fplen; i++)
es_fprintf (es_stdout, "%02X", fparray[i]);
es_putc (':', es_stdout);
}
es_fprintf (es_stdout, "\n");
es_fprintf (es_stdout, ":::%d:\n", sig->digest_algo);
if (opt.show_subpackets)
print_subpackets_colon (sig);