diff options
author | Werner Koch <[email protected]> | 2020-05-08 09:18:42 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2020-05-08 09:18:42 +0000 |
commit | 004fdf61c8b94f646409f4d5855adf8e43b29627 (patch) | |
tree | 7376b60ee55bcb93e2a52e827cc96fef8b43adba /doc | |
parent | tests, json: Do not check for keygrip of pubkeys (diff) | |
download | gpgme-004fdf61c8b94f646409f4d5855adf8e43b29627.tar.gz gpgme-004fdf61c8b94f646409f4d5855adf8e43b29627.zip |
core: Make sure the keygrip is available in WITH_SECRET mode.
* src/engine-gpg.c (gpg_keylist_build_options): Send --with-keygrip
if --with-secret is used.
--
Since GnuPG 2.2.19 the keygrip was not anymore send if only
--with-secret was used in a public key listing. Given that
--with-secret requires computation of the keygrip anyway, there is no
point in not requesting the keyrip in this case.
GnuPG-bug-id: 4820
Diffstat (limited to 'doc')
-rw-r--r-- | doc/gpgme.texi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/gpgme.texi b/doc/gpgme.texi index 8cbb1f22..8129bafa 100644 --- a/doc/gpgme.texi +++ b/doc/gpgme.texi @@ -2827,7 +2827,8 @@ The @code{GPGME_KEYLIST_MODE_WITH_SECRET} returns information about the presence of a corresponding secret key in a public key listing. A public key listing with this mode is slower than a standard listing but can be used instead of a second run to list the secret keys. This -is only supported for GnuPG versions >= 2.1. +is only supported for GnuPG versions >= 2.1. Note that using this +option also makes sure that the keygrip is available in the output. @item GPGME_KEYLIST_MODE_EPHEMERAL @since{1.2.0} |