diff options
author | Werner Koch <[email protected]> | 2025-03-18 15:22:58 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2025-03-18 15:22:58 +0000 |
commit | 91a59d2a35540769c055da2341b5face0be6c286 (patch) | |
tree | 671b47ebd72d8ef86ac370cdd6892f9c8b65ac55 /NEWS | |
parent | Add API gpgme_op_random_value. (diff) | |
download | gpgme-master.tar.gz gpgme-master.zip |
* src/gpgme.h.in (GPGME_DECRYPT_LISTONLY): New.
* src/decrypt.c (op_data_t): Add member list_only.
(_gpgme_decrypt_status_handler): Do not return NO_DATA in list_only
mode.
(_gpgme_op_decrypt_init_result): Add arg flags and set the list_only
flag.
(_gpgme_decrypt_start): Pss flags to the init function.
* src/decrypt-verify.c (decrypt_verify_start): Ditto.
* src/engine-gpg.c (gpg_decrypt): Add --list-only if flag is set.
* tests/run-decrypt.c (main): Add option --list-only.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -7,6 +7,9 @@ Noteworthy changes in version 2.0.0 (unreleased) * New function gpgme_op_random_value to get a cryptographically strong unsigned integer random value. [T6694] + * New decrypt flag to skip the actual decryption so that information + about the recipients can be retrieved. + * Removed the gpgme_attr_t enums and their functions which were deprecated since 2003. [rMd54d6eaa64] @@ -22,6 +25,7 @@ Noteworthy changes in version 2.0.0 (unreleased) gpgme_op_random_value NEW. GPGME_RANDOM_MODE_NORMAL NEW. GPGME_RANDOM_MODE_ZBASE32 NEW. + GPGME_DECRYPT_LISTONLY NEW. gpgme_attr_t REMOVED. gpgme_get_sig_ulong_attr REMOVED. gpgme_get_sig_string_attr REMOVED. |