Page MenuHome GnuPG
Feed Advanced Search

Jul 30 2025

werner changed the status of T7754: gpg segfaults when signing a key with --edit-key and --set-notation=rem@gnupg.org=foo from Open to Testing.
Jul 30 2025, 10:33 AM · gnupg, Bug Report
werner claimed T7754: gpg segfaults when signing a key with --edit-key and --set-notation=rem@gnupg.org=foo.
Jul 30 2025, 10:06 AM · gnupg, Bug Report
werner added a comment to T7754: gpg segfaults when signing a key with --edit-key and --set-notation=rem@gnupg.org=foo.

Urgs

Jul 30 2025, 10:06 AM · gnupg, Bug Report
ikloecker created T7754: gpg segfaults when signing a key with --edit-key and --set-notation=rem@gnupg.org=foo.
Jul 30 2025, 10:02 AM · gnupg, Bug Report
gniibe added a comment to T7721: libgcrypt build-error with gcc-15 on powerpc and alpha.

I pushed the longlong patch: rCb61a7661d017: mpi: Provide the function prototype of __udiv_qrnnd.

Jul 30 2025, 8:58 AM · libgcrypt, Bug Report

Jul 29 2025

werner added a comment to T7709: Decryption with ECC smartcard keys broken.

The card returned these 32 bytes:

1883ba0d1cacda6f357ad9caa062ebd7b3a07291a7788565caf38973bf414286

agent_card_pkdecrypt however returned 33 bytes:

411883ba0d1cacda6f357ad9caa062ebd7b3a07291a7788565caf38973bf414286

Thus the indicator byte is 0x41. The specs (librepgp, rfc4880bis) say:

Jul 29 2025, 3:26 PM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
svuorela changed the status of T7706: Okular: "Save as" does not work from Open to Testing.
Jul 29 2025, 8:54 AM · gpd5x (gpd-5.0.0), Bug Report, okular

Jul 28 2025

svuorela changed the status of T7561: Issues with Okular PGP signature error from Open to Testing.

We have now improved error messages, and this, combined with what could be considered a setup issue, I think we can consider this done for now.

Jul 28 2025, 4:13 PM · Bug Report, okular

Jul 25 2025

werner moved T7709: Decryption with ECC smartcard keys broken from WIP to QA on the gnupg26 board.
Jul 25 2025, 5:29 PM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
TobiasFella set External Link to https://invent.kde.org/pim/kleopatra/-/merge_requests/401 on T7741: Kleopatra: Crash when opening audit log from certificate import result dialog.
Jul 25 2025, 2:07 PM · gpd5x (gpd-5.0.0), kleopatra, Bug Report
TobiasFella claimed T7741: Kleopatra: Crash when opening audit log from certificate import result dialog.
Jul 25 2025, 2:07 PM · gpd5x (gpd-5.0.0), kleopatra, Bug Report
TobiasFella created T7741: Kleopatra: Crash when opening audit log from certificate import result dialog.
Jul 25 2025, 2:07 PM · gpd5x (gpd-5.0.0), kleopatra, Bug Report
timegrid moved T7703: Kleopatra: Validity icons in selected rows missing from QA to Done on the gpd5x board.

Looks good to me on gpg4win-5.0.0-beta345 @ win10

Jul 25 2025, 12:18 PM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
werner triaged T7620: gpgme_get_key fails to detect secret encryption subkey after key generation on card (until context is recreated) as Normal priority.
Jul 25 2025, 10:32 AM · gnupg26, gnupg, Bug Report

Jul 23 2025

gniibe added a comment to T7721: libgcrypt build-error with gcc-15 on powerpc and alpha.

IIUC, it's actually binutils version dependency (instead of GCC 15), perhaps.

Jul 23 2025, 7:18 AM · libgcrypt, Bug Report

Jul 21 2025

jukivili added a comment to T7721: libgcrypt build-error with gcc-15 on powerpc and alpha.

I tested Ubuntu's version of GCC-15 (powerpc64le cross-compiler) and did not see this build failure:

Jul 21 2025, 11:04 AM · libgcrypt, Bug Report

Jul 18 2025

ametzler1 added a comment to T7721: libgcrypt build-error with gcc-15 on powerpc and alpha.

For PowerISA 3.00 Instructions issue, following patch may help:

diff --git a/configure.ac b/configure.ac
index 6cc1e189..70d632af 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2448,10 +2448,11 @@ AC_CACHE_CHECK([whether GCC inline assembler supports PowerISA 3.00 instructions
         else
           gcry_cv_gcc_inline_asm_ppc_arch_3_00=no
           AC_LINK_IFELSE([AC_LANG_PROGRAM(
-          [[__asm__(".text\n\t"
+          [[__asm__(".machine        \"any\"\n"
+                    ".text\n\t"
                     ".globl testfn;\n"
                     "testfn:\n"
-                    "stxvb16x %r1,%v12,%v30;\n"
+                    "stxvb16x 47,0,9;\n"
                   );
             void testfn(void);
             ]], [ testfn(); ])],

I figured out that .machine "any" is needed with GCC 15.

Jul 18 2025, 12:08 PM · libgcrypt, Bug Report
gniibe changed the status of T7723: gpgrt:w32: Fix for inheriting stdin/stdout/stderr with "NUL" from Open to Testing.
Jul 18 2025, 9:04 AM · Windows, gpgrt, Feature Request, Bug Report
gniibe changed the status of T7723: gpgrt:w32: Fix for inheriting stdin/stdout/stderr with "NUL", a subtask of T7716: gpgrt:w32: Synchronous spawning detached process, with standard input and standard error, from Open to Testing.
Jul 18 2025, 9:04 AM · gpgrt, Feature Request, Bug Report
gniibe changed the status of T7716: gpgrt:w32: Synchronous spawning detached process, with standard input and standard error from Open to Testing.
Jul 18 2025, 9:04 AM · gpgrt, Feature Request, Bug Report
gniibe added a comment to T7721: libgcrypt build-error with gcc-15 on powerpc and alpha.

I figured out that .machine "any" is needed with GCC 15.

Jul 18 2025, 4:51 AM · libgcrypt, Bug Report
gniibe added a comment to T7721: libgcrypt build-error with gcc-15 on powerpc and alpha.

For Alpha (hppa, and sparc), IIUC, following patch may help:

Jul 18 2025, 4:33 AM · libgcrypt, Bug Report
gniibe claimed T7721: libgcrypt build-error with gcc-15 on powerpc and alpha.

For PowerISA 3.00 Instructions issue, following patch may help:

Jul 18 2025, 4:31 AM · libgcrypt, Bug Report

Jul 17 2025

werner assigned T6865: Email will be sent encrypted after draft was saved in encrypted state although encryption is disabled to mmontkowski.

In short: A message was saved as an encrypted draft and then the user edited that draft, disabled encryption and then the message was sent out only encrypted to the draft key.

Jul 17 2025, 5:06 PM · gpd5x, gpgol, Bug Report
werner added a comment to T4836: GpgOL modifies PGP/Inline email messages stored in the server.

We won't implement that any time soon given that gpgol2 will be an easier plaform to get it right.

Jul 17 2025, 4:54 PM · gpgol, Bug Report
werner added a project to T7722: GpgOL: Temp filename creation fails to choose proper extension: Bug Report.
Jul 17 2025, 4:45 PM · gpd5x (gpd-5.0.0), vsd33 (vsd-3.3.3), Bug Report, gpgol
werner closed T7670: updated nl.po for gnupg 2.4 as Resolved.
Jul 17 2025, 1:47 PM · i18n, gnupg, Bug Report
werner added a comment to T7670: updated nl.po for gnupg 2.4.

Thanks. Will go into 2.4.9 to be released soon.

Jul 17 2025, 1:47 PM · i18n, gnupg, Bug Report
werner moved T7709: Decryption with ECC smartcard keys broken from Backlog to WIP on the gpd5x board.
Jul 17 2025, 9:12 AM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
werner changed the status of T7709: Decryption with ECC smartcard keys broken from Open to Testing.
Jul 17 2025, 9:12 AM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
gniibe closed T7589: Unable to export SSH keys for ED25519 keys generate on a SmartCard as Resolved.
Jul 17 2025, 4:26 AM · gnupg, ssh, Bug Report
gniibe closed T7623: gpgscm: Fix fixed-size characters (for portability, specifically for GCC 15 or later), a subtask of T7617: libgcrypt: Add __nonstring__ attribute for data for GCC 15 or later, as Resolved.
Jul 17 2025, 4:25 AM · libgcrypt, Bug Report
gniibe closed T7623: gpgscm: Fix fixed-size characters (for portability, specifically for GCC 15 or later) as Resolved.
Jul 17 2025, 4:25 AM · gnupg, gpgrt, Bug Report
gniibe added a parent task for T7709: Decryption with ECC smartcard keys broken: T7649: gnupg: Use KEM interface for encryption/decryption.
Jul 17 2025, 4:24 AM · gpd5x (gpd-5.0.0), gnupg26, Bug Report

Jul 16 2025

gniibe added a comment to T7709: Decryption with ECC smartcard keys broken.

Here is a patch.

diff --git a/agent/divert-scd.c b/agent/divert-scd.c
index 1e5de4671..bb42dd3b4 100644
--- a/agent/divert-scd.c
+++ b/agent/divert-scd.c
@@ -517,6 +517,9 @@ agent_card_ecc_kem (ctrl_t ctrl, const unsigned char *ecc_ct,
Jul 16 2025, 12:09 PM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
werner moved T7676: Cannot decrypt a message encrypted to a Cv25519 key on a token from WIP to QA on the gnupg26 board.
Jul 16 2025, 11:54 AM · gnupg26, Bug Report
werner added a project to T7709: Decryption with ECC smartcard keys broken: gnupg26.
Jul 16 2025, 11:42 AM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
werner assigned T7709: Decryption with ECC smartcard keys broken to gniibe.
Jul 16 2025, 11:42 AM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
ebo renamed T7709: Decryption with ECC smartcard keys broken from Decryption with smartcard keys broken to Decryption with ECC smartcard keys broken.
Jul 16 2025, 10:27 AM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
gniibe added a comment to T7723: gpgrt:w32: Fix for inheriting stdin/stdout/stderr with "NUL".

Fixed with new GPGRT_PROCESS_STDIO_NUL flag.

Jul 16 2025, 3:34 AM · Windows, gpgrt, Feature Request, Bug Report

Jul 15 2025

ametzler1 added a comment to T7721: libgcrypt build-error with gcc-15 on powerpc and alpha.

The powerpc64le issue (undefined reference to `gcry_poly1305_p10le_4blocks') also applies to GIT master.

Jul 15 2025, 1:35 PM · libgcrypt, Bug Report
ebo added a comment to T7709: Decryption with ECC smartcard keys broken.

The issue remains with gpg 2.5.9 from Gpg4win-5.0.0-beta345.
Here a gpg-agent log for the failed decryption:

Jul 15 2025, 1:35 PM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
gniibe added a comment to T7716: gpgrt:w32: Synchronous spawning detached process, with standard input and standard error.

Pushed the changes:

T7723 fix by rE311fb769d1dd: w32:spawn: New flag GPGRT_PROCESS_STDIO_NUL.

Jul 15 2025, 8:47 AM · gpgrt, Feature Request, Bug Report
gniibe added a comment to T7716: gpgrt:w32: Synchronous spawning detached process, with standard input and standard error.

Before implementing this feature, it's better to fix T7723: gpgrt:w32: Fix for inheriting stdin/stdout/stderr with "NUL", and do some clean up.

Jul 15 2025, 8:35 AM · gpgrt, Feature Request, Bug Report
gniibe updated the task description for T7723: gpgrt:w32: Fix for inheriting stdin/stdout/stderr with "NUL".
Jul 15 2025, 8:21 AM · Windows, gpgrt, Feature Request, Bug Report
gniibe updated the task description for T7723: gpgrt:w32: Fix for inheriting stdin/stdout/stderr with "NUL".
Jul 15 2025, 7:53 AM · Windows, gpgrt, Feature Request, Bug Report
gniibe added a comment to T7723: gpgrt:w32: Fix for inheriting stdin/stdout/stderr with "NUL".

If we will fix gpgconf using GPGRT_PROCESS_STDIO_NUL, we will need to fix gpg-connect-agent to see if it's NUL or not.

Jul 15 2025, 7:52 AM · Windows, gpgrt, Feature Request, Bug Report
gniibe triaged T7723: gpgrt:w32: Fix for inheriting stdin/stdout/stderr with "NUL" as Wishlist priority.
Jul 15 2025, 7:50 AM · Windows, gpgrt, Feature Request, Bug Report
gniibe closed T7668: gnupg: regexp and build with -fsanitize=address as Resolved.
Jul 15 2025, 7:26 AM · Bug Report, gnupg

Jul 14 2025

ebo moved T7154: Kleopatra: Dragging and dropping a certificate from the main view onto itself shouldn't trigger an import from WIP to QA on the gpd5x board.
Jul 14 2025, 5:59 PM · gpd5x (gpd-5.0.0), Linux, Bug Report, kleopatra
ebo moved T7639: Kleopatra: Version information sometimes not shown. from WIP to QA on the gpd5x board.
Jul 14 2025, 5:59 PM · test on hold, vsd33 (vsd-3.3.3), Bug Report, gpd5x, kleopatra
ebo moved T6930: pinentry-qt window is not parented to Kleopatra on Wayland from WIP to QA on the gpd5x board.
Jul 14 2025, 5:59 PM · gpd5x (gpd-5.0.0), Linux, kleopatra, Bug Report
ebo moved T7703: Kleopatra: Validity icons in selected rows missing from WIP to QA on the gpd5x board.
Jul 14 2025, 5:59 PM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
werner renamed T7721: libgcrypt build-error with gcc-15 on powerpc and alpha from libgcrypt build-error with gcc-15 to libgcrypt build-error with gcc-15 on powerpc and alpha.
Jul 14 2025, 4:54 PM · libgcrypt, Bug Report
ametzler1 added a comment to T7721: libgcrypt build-error with gcc-15 on powerpc and alpha.

Sure that this is about 1.11.0 ? We released 1.11.1 with at least one fix for gcc regression (T7166). In master we had some more fixes for gcc 15 bugs (or what ever you will call such regression in a compiler)

Jul 14 2025, 3:23 PM · libgcrypt, Bug Report
werner added a project to T7721: libgcrypt build-error with gcc-15 on powerpc and alpha: libgcrypt.
Jul 14 2025, 2:44 PM · libgcrypt, Bug Report
werner added a comment to T7721: libgcrypt build-error with gcc-15 on powerpc and alpha.

Sure that this is about 1.11.0 ? We released 1.11.1 with at least one fix for gcc regression (T7166). In master we had some more fixes for gcc 15 bugs (or what ever you will call such regression in a compiler)

Jul 14 2025, 2:44 PM · libgcrypt, Bug Report
ametzler1 created T7721: libgcrypt build-error with gcc-15 on powerpc and alpha.
Jul 14 2025, 1:14 PM · libgcrypt, Bug Report

Jul 12 2025

alexk added a comment to T7660: GPGME invocation by cri-o hangs on gpgme_op_verify.

I created a Go test program that runs several Go routines, each of which verifies a byte array loaded from a file in advance. Each go-routine is spawned with a configurable delay in milliseconds. I tested it with 100 iterations, which resulted in at least 50 parallel processes. Each verification process uses its own context, as Crio does. I didn't encounter any errors.

Here is my repository with a README containing more information: https://git.sr.ht/~kulbartsch/gpgmego-verify-load-test

Jul 12 2025, 12:27 PM · golang, gpgme, Bug Report

Jul 11 2025

ebo added a comment to T7709: Decryption with ECC smartcard keys broken.

I have not tested this extensively but it seems to me after some fast checks that the pivotal point here is the usage of a brainpool key on a smart card for the decryption.

Jul 11 2025, 11:35 AM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
ebo added a comment to T7709: Decryption with ECC smartcard keys broken.

I have not tested this extensively but it seems to me after some fast checks that the pivotal point here is the usage of a brainpool key on a smart card for the decryption.

Jul 11 2025, 11:27 AM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
gniibe added a comment to T7716: gpgrt:w32: Synchronous spawning detached process, with standard input and standard error.

Here is an experimental change to support the feature.

Jul 11 2025, 10:50 AM · gpgrt, Feature Request, Bug Report
gniibe added a comment to T7720: w32: Synchronous spawning gpg-agent/dirmngr/keyboxd.

I'm testing the following patch with experimental change of libgpg-error.

Jul 11 2025, 10:45 AM · gnupg, Feature Request, Bug Report
gniibe triaged T7720: w32: Synchronous spawning gpg-agent/dirmngr/keyboxd as Wishlist priority.
Jul 11 2025, 10:44 AM · gnupg, Feature Request, Bug Report
gniibe renamed T7716: gpgrt:w32: Synchronous spawning detached process, with standard input and standard error from gpgrt:w32: Spawn detached process, with standard input and standard error to gpgrt:w32: Synchronous spawning detached process, with standard input and standard error.
Jul 11 2025, 10:39 AM · gpgrt, Feature Request, Bug Report

Jul 10 2025

ebo triaged T7706: Okular: "Save as" does not work as Normal priority.

Likely connected to T7705: Okular: Error on signature if the original file is overwritten

Jul 10 2025, 4:05 PM · gpd5x (gpd-5.0.0), Bug Report, okular
ebo triaged T7705: Okular: Error on signature if the original file is overwritten as Normal priority.

I can confirm this.

Jul 10 2025, 4:00 PM · Bug Report, okular, gpd5x
werner added a comment to T7138: Windows (Semi-hosted environment): filename and network access.

We already have an initialization function in gpgrt which is thread-safe at least if used as a DLL. Maybe move the check to there.

Jul 10 2025, 10:03 AM · gnupg, Bug Report
gniibe added a comment to T7138: Windows (Semi-hosted environment): filename and network access.

In libgpg-error, we have: rE65114f24e13f: w32: More changes to the extended length path handling.

Jul 10 2025, 3:51 AM · gnupg, Bug Report

Jul 9 2025

gniibe updated the task description for T7716: gpgrt:w32: Synchronous spawning detached process, with standard input and standard error.
Jul 9 2025, 9:07 AM · gpgrt, Feature Request, Bug Report
gniibe triaged T7716: gpgrt:w32: Synchronous spawning detached process, with standard input and standard error as Wishlist priority.
Jul 9 2025, 6:44 AM · gpgrt, Feature Request, Bug Report
gniibe claimed T7716: gpgrt:w32: Synchronous spawning detached process, with standard input and standard error.
Jul 9 2025, 6:44 AM · gpgrt, Feature Request, Bug Report
gniibe created T7716: gpgrt:w32: Synchronous spawning detached process, with standard input and standard error.
Jul 9 2025, 6:43 AM · gpgrt, Feature Request, Bug Report

Jul 8 2025

ikloecker added a comment to T7658: Okular: Dirmngr startup timeout on signature validation.

Staring at some Process Monitor logs I noticed that dirmngr wastes 3-4 seconds trying to connect to localhost:9050 and localhost:9150 looking for tor. After adding no-use-tor to dirmngr.conf dirmngr starts reasonably fast.

Jul 8 2025, 3:16 PM · gpd5x (gpd-5.0.0), Bug Report, okular

Jul 7 2025

ikloecker added a comment to T7658: Okular: Dirmngr startup timeout on signature validation.

I have built the run-* test programs of gpgme for Windows. run-keylist --cms --secret takes about 23 seconds. 3.7 seconds are gpgme initialization/setup (gpgconf --list-dirs, gpgconf --list-components, gpg --version, gpgsm --version, gpgconf --version). Most time (2 x 6-8 s) is lost starting gpg-agent and dirmngr. (keyboxd is not enabled here.)

Jul 7 2025, 3:47 PM · gpd5x (gpd-5.0.0), Bug Report, okular

Jul 4 2025

timegrid added a comment to T7709: Decryption with ECC smartcard keys broken.

commands with -v

Jul 4 2025, 1:59 PM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
werner added a comment to T7709: Decryption with ECC smartcard keys broken.

Please always add -v t commands like "gpg --decrypt test.txt.gpg". To decide whether this is smartcard or gpg-agent releated, I need to see a log file form gpg-agent and scdaemon. The latter is more important. I would suggest "debug ipc,app,cardio"

Jul 4 2025, 1:27 PM · gpd5x (gpd-5.0.0), gnupg26, Bug Report

Jul 3 2025

gniibe closed T7648: Decryption to a Ky768_Cv25519 key does not work if the Cv25519 key is on a token as Resolved.
Jul 3 2025, 7:14 AM · PQC, Bug Report

Jul 2 2025

TobiasFella renamed T7709: Decryption with ECC smartcard keys broken from Kleopatra: Decryption with smartcard keys broken to Decryption with smartcard keys broken.
Jul 2 2025, 12:40 PM · gpd5x (gpd-5.0.0), gnupg26, Bug Report

Jul 1 2025

timegrid closed T7702: Kleopatra: Printing on win11 aborts silently as Resolved.

Ok, it was a missing update (although windows claimed to be up-to-date).
After installing 2025-06 [...] KB5060829 the Microsoft Print to PDF feature is available again and printing also works in Kleopatra/Okular.

Jul 1 2025, 6:49 PM · Windows, Bug Report, kleopatra
ikloecker changed the status of T7703: Kleopatra: Validity icons in selected rows missing from Open to Testing.

A second patch fixes the problem with the button in the smart card view.

Jul 1 2025, 4:57 PM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
ikloecker added a comment to T7703: Kleopatra: Validity icons in selected rows missing.

I have added a patch to disable recoloring of the status icons in Gpg4win. This ensures that the status icons in the selected rows don't get all-white.

Jul 1 2025, 4:09 PM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
ikloecker added a comment to T7703: Kleopatra: Validity icons in selected rows missing.

Upstream bug report for invisible status icons: https://bugs.kde.org/show_bug.cgi?id=506434 (Icon coloring is inherently incompatible with colored Breeze status icons)

Jul 1 2025, 3:47 PM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
timegrid added a comment to T7702: Kleopatra: Printing on win11 aborts silently.

It's also the same error in Okular, when a pdf is printed.

Jul 1 2025, 2:18 PM · Windows, Bug Report, kleopatra
timegrid added a comment to T7702: Kleopatra: Printing on win11 aborts silently.

Same on gpg4win-4.4.1 @ win11 (here a bit more debugview context)

3	3.503991	8584	kleopatra.exe	org.kde.pim.kleopatra: Paperkey export finished:  0 status:  QProcess::NormalExit
4	3.691599	8584	kleopatra.exe	QPrintDialog: Cannot be used on non-native printers
5	3.691981	8584	kleopatra.exe	QPrintDialog: Cannot be used on non-native printers
6	3.692752	8584	kleopatra.exe	org.kde.pim.kleopatra: Printing aborted.
Jul 1 2025, 1:44 PM · Windows, Bug Report, kleopatra
TobiasFella added a comment to T7702: Kleopatra: Printing on win11 aborts silently.

Works fine here.

Jul 1 2025, 1:29 PM · Windows, Bug Report, kleopatra
timegrid added a comment to T7709: Decryption with ECC smartcard keys broken.

version

C:\Users\g10\Desktop\tmp\scdecrypt>gpg --version
gpg (GnuPG) 2.5.8
libgcrypt 1.11.1
Copyright (C) 2025 g10 Code GmbH
License GNU GPL-3.0-or-later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Jul 1 2025, 1:26 PM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
ikloecker added a comment to T7709: Decryption with ECC smartcard keys broken.

gpg --version?
gpg -K?

Jul 1 2025, 1:18 PM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
timegrid updated the task description for T7709: Decryption with ECC smartcard keys broken.
Jul 1 2025, 12:45 PM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
timegrid added a comment to T7709: Decryption with ECC smartcard keys broken.

You're right, it also errors on gpg directly:

Jul 1 2025, 12:44 PM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
ikloecker claimed T7703: Kleopatra: Validity icons in selected rows missing.
Jul 1 2025, 12:25 PM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
TobiasFella added a comment to T7709: Decryption with ECC smartcard keys broken.

I can't reproduce. Please check whether this works if you use gpg directly; it's a bit unlikely that this is kleopatra-specific, since kleopatra doesn't really care whether the key is on a smartcard or not.

Jul 1 2025, 12:18 PM · gpd5x (gpd-5.0.0), gnupg26, Bug Report

Jun 30 2025

ikloecker added a comment to T7639: Kleopatra: Version information sometimes not shown..

If this should also work in gpg4win-5.0.0-beta336 @ win10 (beta compliance mode), it does not:

Jun 30 2025, 4:48 PM · test on hold, vsd33 (vsd-3.3.3), Bug Report, gpd5x, kleopatra
timegrid added a comment to T7639: Kleopatra: Version information sometimes not shown..

If this should also work in gpg4win-5.0.0-beta336 @ win10 (beta compliance mode), it does not:

Jun 30 2025, 4:31 PM · test on hold, vsd33 (vsd-3.3.3), Bug Report, gpd5x, kleopatra
timegrid closed T7711: Kleopatra: Disabled smartcard keys displayed in cert selection as Wontfix.

This only happens, if the smartcard key

  • is the only key in the keyring or
  • was used for sign/encrypt earlier and thus saved as selection default.
Jun 30 2025, 4:09 PM · Bug Report, kleopatra
ikloecker renamed T7711: Kleopatra: Disabled smartcard keys displayed in cert selection from Kleopatra: Deactivated smartcard keys displayed in cert selection to Kleopatra: Disabled smartcard keys displayed in cert selection.
Jun 30 2025, 3:17 PM · Bug Report, kleopatra
timegrid created T7711: Kleopatra: Disabled smartcard keys displayed in cert selection.
Jun 30 2025, 2:38 PM · Bug Report, kleopatra
timegrid created T7709: Decryption with ECC smartcard keys broken.
Jun 30 2025, 1:08 PM · gpd5x (gpd-5.0.0), gnupg26, Bug Report
timegrid moved T7232: Kleopatra: Crash on startup when CMS is disabled from Backlog to Done on the gpd5x board.

Thanks, confirmed then, moving to Done.

Jun 30 2025, 12:12 PM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
ikloecker added a comment to T7232: Kleopatra: Crash on startup when CMS is disabled.

With above configuration it seems to work on gpg4win-5.0.0-beta336 @ win10.
Any way to verify in kleopatra, that the setting was applied?

Jun 30 2025, 11:50 AM · gpd5x (gpd-5.0.0), Bug Report, kleopatra