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

gpg: New option --full-timestrings.

* g10/options.h (opt): Add flags.full_timestrings.
* g10/gpg.c (oFullTimestrings): New.
(opts): New option.
(main): Set new flag.
* g10/keyid.c (dateonlystr_from_pk): New.
(dateonlystr_from_sig): New.
(datestr_from_pk): Divert to isotimestamp if requested.
(datestr_from_sig): Ditto.
(expirestr_from_pk): Ditto.
(expirestr_from_sig): Ditto.
(revokestr_from_pk): Ditto.
* g10/import.c (impex_filter_getval): Use dateonlystr_from_sig and
dateonlystr_from_pk.
--

Quite helpful for debugging keys.

Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
Werner Koch 2020-02-13 14:01:07 +01:00
parent 14ac350f86
commit 86312b920a
No known key found for this signature in database
GPG key ID: E3FDFF218E45B72B
6 changed files with 55 additions and 4 deletions

View file

@ -1411,7 +1411,7 @@ impex_filter_getval (void *cookie, const char *propname)
}
else if (!strcmp (propname, "sig_created_d"))
{
result = datestr_from_sig (sig);
result = dateonlystr_from_sig (sig);
}
else if (!strcmp (propname, "sig_algo"))
{
@ -1454,7 +1454,7 @@ impex_filter_getval (void *cookie, const char *propname)
}
else if (!strcmp (propname, "key_created_d"))
{
result = datestr_from_pk (pk);
result = dateonlystr_from_pk (pk);
}
else if (!strcmp (propname, "expired"))
{