mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Add new option --with-secret.
* g10/gpg.c: Add option --with-secret. * g10/options.h (struct opt): Add field with_secret. * g10/keylist.c (public_key_list): Pass opt.with_secret to list_all and list_one. (list_all, list_one): Add arg mark_secret. (list_keyblock_colon): Add arg has_secret. * sm/gpgsm.c: Add option --with-secret. * sm/server.c (option_handler): Add option "with-secret". * sm/gpgsm.h (server_control_s): Add field with_secret. * sm/keylist.c (list_cert_colon): Take care of with_secret. Also move the token string from the wrong field 14 to 15. -- This option is useful for key managers which need to know whether a key has a secret key. This change allows to collect this information in one pass.
This commit is contained in:
parent
d89dc6917e
commit
be07ed65e1
14 changed files with 88 additions and 30 deletions
|
@ -194,7 +194,8 @@ described here.
|
|||
|
||||
Used in sec/sbb to print the serial number of a token (internal
|
||||
protect mode 1002) or a '#' if that key is a simple stub (internal
|
||||
protect mode 1001)
|
||||
protect mode 1001). If the option --with-secret is used and a
|
||||
secret key is available for the public key, a '+' indicates this.
|
||||
|
||||
*** Field 16 - Hash algorithm
|
||||
|
||||
|
|
|
@ -2127,6 +2127,12 @@ of the output and may be used together with another command.
|
|||
@item --with-keygrip
|
||||
@opindex with-keygrip
|
||||
Include the keygrip in the key listings.
|
||||
|
||||
@item --with-secret
|
||||
@opindex with-secret
|
||||
Include info about the presence of a secret key in public key listings
|
||||
done with @code{--with-colons}.
|
||||
|
||||
@end ifset
|
||||
|
||||
@end table
|
||||
|
|
|
@ -581,6 +581,13 @@ certificate.
|
|||
Include the keygrip in standard key listings. Note that the keygrip is
|
||||
always listed in --with-colons mode.
|
||||
|
||||
@ifset gpgtwoone
|
||||
@item --with-secret
|
||||
@opindex with-secret
|
||||
Include info about the presence of a secret key in public key listings
|
||||
done with @code{--with-colons}.
|
||||
@end ifset
|
||||
|
||||
@end table
|
||||
|
||||
@c *******************************************
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue