diff options
author | Werner Koch <[email protected]> | 2023-10-05 12:10:01 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2023-10-05 12:18:03 +0000 |
commit | b63d203d3ba49483b079fb118a90990c452cd232 (patch) | |
tree | 198c23c1e89f42822cbdb22bf60202b64d067378 /NEWS | |
parent | core: Check STATUS_FAILURE in export operations. (diff) | |
download | gpgme-b63d203d3ba49483b079fb118a90990c452cd232.tar.gz gpgme-b63d203d3ba49483b079fb118a90990c452cd232.zip |
core: Add key capability flags has_encrypt etc.
* src/gpgme.h.in (struct _gpgme_key): Add flags has_encrypt,
has_certify, has_sign, and has_authenticate.
* src/keylist.c (finish_key): Set these flags.
* tests/run-keylist.c (main): Print them.
--
GnuPG-bug-id: 6748
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -5,13 +5,19 @@ Noteworthy changes in version 1.23.0 (unreleased) * New keylist mode GPGME_KEYLIST_MODE_WITH_V5FPR. [T6705] + * New key capability flags has_*. [T6748] + * qt: Support refreshing keys via WKD. [T6672] * Interface changes relative to the 1.22.0 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - GPGME_KEYLIST_MODE_WITH_V5FPR NEW. - qt: Protocol::wkdRefreshJob NEW. - qt: WKDRefreshJob NEW. + GPGME_KEYLIST_MODE_WITH_V5FPR NEW. + gpgme_key_t EXTENDED: New field has_encrypt. + gpgme_key_t EXTENDED: New field has_sign. + gpgme_key_t EXTENDED: New field has_certify. + gpgme_key_t EXTENDED: New field has_authenticate. + qt: Protocol::wkdRefreshJob NEW. + qt: WKDRefreshJob NEW. Noteworthy changes in version 1.22.0 (2023-08-21) |