diff options
author | Werner Koch <[email protected]> | 2024-11-21 08:52:46 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2024-11-21 08:52:46 +0000 |
commit | c8c86f25fd733136feb013f9b9eb829a24040b5b (patch) | |
tree | 4d81e77616e647ebb115572db7221215660a6130 | |
parent | gpgconf: Show also the used nPth version with -V (diff) | |
download | gnupg-c8c86f25fd733136feb013f9b9eb829a24040b5b.tar.gz gnupg-c8c86f25fd733136feb013f9b9eb829a24040b5b.zip |
gpg: Add the AEAD algo number to the DECRYPTION_INFO status line.
* g10/decrypt-data.c (decrypt_data): Print the aead_algo
--
GnuPG-bug-id: 7398
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | g10/decrypt-data.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,8 @@ Noteworthy changes in version 2.2.46 (unreleased) ------------------------------------------------- + * gpg: Add the AEAD algo number to the DECRYPTION_INFO status line. + [T7398] Release-info: https://dev.gnupg.org/T7314 diff --git a/g10/decrypt-data.c b/g10/decrypt-data.c index 4bb2b7e80..5d250bfdb 100644 --- a/g10/decrypt-data.c +++ b/g10/decrypt-data.c @@ -282,7 +282,7 @@ decrypt_data (ctrl_t ctrl, void *procctx, PKT_encrypted *ed, DEK *dek, } write_status_printf (STATUS_DECRYPTION_INFO, "%d %d %d", - ed->mdc_method, dek->algo, 0); + ed->mdc_method, dek->algo, ed->aead_algo); if (opt.show_session_key) { |