Page MenuHome GnuPG
Feed Advanced Search

Jun 3 2025

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

@sj98ta Please let us know if cri-o invokes other processes (except the ones by gpgme) or not.
If cri-o invokes other processes (by other threads), my theory matters; With the interference by other processes holding pipe file descriptors, gpgme keeps polling pipe file descriptors.

Jun 3 2025, 9:05 AM · golang, gpgme, Bug Report
gniibe changed the status of T7668: gnupg: regexp and build with -fsanitize=address from Open to Testing.

Pushed the change: rG16ee68259d1d: gpg,regexp: Use -DREGEXP_PREFIX=gnupg_.

Jun 3 2025, 4:42 AM · Bug Report, gnupg

Jun 2 2025

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

I have now seen instances where 1, 2, or 3 processes hang.

Jun 2 2025, 5:31 PM · golang, gpgme, Bug Report
gniibe added a project to T7664: tests/openpgp/ecc.scm fails when building GPG with address sanitizer: gnupg.
Jun 2 2025, 6:39 AM · gnupg, Bug Report
gniibe claimed T7589: Unable to export SSH keys for ED25519 keys generate on a SmartCard.
Jun 2 2025, 6:38 AM · gnupg, ssh, Bug Report

May 31 2025

ametzler1 created T7670: updated nl.po for gnupg 2.4.
May 31 2025, 3:29 PM · i18n, gnupg, Bug Report

May 30 2025

ikloecker changed the status of T7656: Kleopatra: Wrong update suggestion from 5.0.0 to 4.4.0 from Open to Testing.

Do I understand correctly that this bug is then automatically done/fixed?

It depends on how the version comparison works. We may have to change the code to extract the version number (e.g. 5.0.0) from the version string.

May 30 2025, 11:30 AM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
werner added a comment to T7656: Kleopatra: Wrong update suggestion from 5.0.0 to 4.4.0.

I forgot to mention that gpgrt has an API to compare version numbers in the same way gpgconf and all gnupg components do it; this should be somewhat similar to sort -V

May 30 2025, 11:23 AM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
werner added a comment to T7656: Kleopatra: Wrong update suggestion from 5.0.0 to 4.4.0.

BTW, if you append a beta string the thing works as well. Thus with an development version for 4.4.2 we would get a 'newer' state:

May 30 2025, 11:19 AM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
werner added a comment to T7656: Kleopatra: Wrong update suggestion from 5.0.0 to 4.4.0.

The version file is locally cached and updated from time to time unless that feature is disabled.
An update can be forced using

May 30 2025, 11:15 AM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
werner added a comment to T7660: GPGME invocation by cri-o hangs on gpgme_op_verify.

Re: pipe2: In gpgme_io_pipe we set FD_CLOEXEC only for one end of the pipe. Thus simply using pipe2 would change the behaviour.

May 30 2025, 11:09 AM · golang, gpgme, Bug Report
ikloecker added a comment to T7656: Kleopatra: Wrong update suggestion from 5.0.0 to 4.4.0.

By the way, Kleopatra uses GpgME::SwdbResult::query() which I expect to do what you propose.

May 30 2025, 11:00 AM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
ikloecker added a comment to T7656: Kleopatra: Wrong update suggestion from 5.0.0 to 4.4.0.

First, gpgconf doesn't help with parsing a version string like gpg4win-5.0.0-beta190 which is what I was talking about. Once we have extracted "gpg4win" and "5.0.0" we could use gpgconf. ...if it worked as documented in the man page. I don't understand this:

$ gpgconf --query-swdb gpg4win 4.3.0
gpg4win:4.3.0:-::32849:::::::
May 30 2025, 10:56 AM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
werner added a comment to T7656: Kleopatra: Wrong update suggestion from 5.0.0 to 4.4.0.

This is all done by gpgconf like here:

May 30 2025, 9:22 AM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
gniibe added a comment to T7660: GPGME invocation by cri-o hangs on gpgme_op_verify.

Here is a hypothetical application which may have similar problem.
(1) It is a multi threaded application using gpgme, forking another process (possibly, exec).
(2) One of threads invokes gpgme_new, gpgme_op_import and gpg_op_verify.
(3) When the control goes to gpgme_op_* then gpgme_io_spawn by a thread A, another thread B forks a process.
(3-1) While the thread A is polling pipe I/O, forked process holds pipe file descriptors too.
(3-2) Until the forked process exists, pipe I/O polling by the thread A continues (because pipe's other end is still active).

May 30 2025, 7:06 AM · golang, gpgme, Bug Report
collinfunk added a comment to T7660: GPGME invocation by cri-o hangs on gpgme_op_verify.

There is FD_CLOFORK on Solaris 11.4 as well. It is a part of POSIX-1.2024, but who knows how long until that becomes common.

May 30 2025, 5:05 AM · golang, gpgme, Bug Report
gniibe added a comment to T7660: GPGME invocation by cri-o hangs on gpgme_op_verify.

I don't know if it is related to this particular case, but I found a possible race condition in _gpgme_io_pipe.
Between pipe and fcntl with FD_CLOEXEC, another thread may fork a process which keeps running.
It would be good to use pipe2 here:
https://pubs.opengroup.org/onlinepubs/9799919799/functions/pipe.html

May 30 2025, 4:46 AM · golang, gpgme, Bug Report

May 29 2025

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

Another possible cause is... gpgme uses closefrom in GNU C library, if available. if it doesn't work well, it would be possible invoked gpg keeps waiting its input.

May 29 2025, 11:02 AM · golang, gpgme, Bug Report
gniibe added a comment to T7660: GPGME invocation by cri-o hangs on gpgme_op_verify.

Here is my observation.

May 29 2025, 9:11 AM · golang, gpgme, Bug Report

May 28 2025

aheinecke lowered the priority of T4836: GpgOL modifies PGP/Inline email messages stored in the server from High to Low.

Thank you for the detailed report.

We recently had a similar problem with S/MIME Mails. T4543 I think that we can apply the same fix we did for S/MIME also for OpenPGP. So I give this high priority as I think that this can be easily fixed and is a big problem in mixed environments.

May 28 2025, 10:58 PM · gpgol, Bug Report
aheinecke renamed T4836: GpgOL modifies PGP/Inline email messages stored in the server from GpgOL sometimes modifying email messages stored in the server to GpgOL modifies PGP/Inline email messages stored in the server.
May 28 2025, 10:52 PM · gpgol, Bug Report
ikloecker added a comment to T7656: Kleopatra: Wrong update suggestion from 5.0.0 to 4.4.0.

Do I understand correctly that this bug is then automatically done/fixed?

May 28 2025, 9:35 PM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
aheinecke added a comment to T7620: gpgme_get_key fails to detect secret encryption subkey after key generation on card (until context is recreated).

I do not think that this is the only place where such an issue occurs. Maybe we should make the documentation clearer about context key reuse. But the context is specifically designed to cache information about a key, so as to avoid memory overhead. I learned early on that its best for each new operation to use a new context. A context is basically an instance of gpg or gpgsm. So you start one process, ask it for a keylist, keep the process running, start another process, modify the key database, and then ask the first process again about his worldview. Either the first process is a bit confused because it has read data and then that data changed (what happens here) or it has no idea about the change since it was efficient and only read the database once. But here in this example you should be able to reproduce this also by making any other modifications to the key, adding other subkeys, userids etc. That GPGME even notices the secret key is more of a side effect of how the programming works because the GPGME gpg process will ask the gpg-agent (so a third process).

May 28 2025, 9:19 PM · gnupg26, gnupg, Bug Report
TobiasFella added a comment to T7656: Kleopatra: Wrong update suggestion from 5.0.0 to 4.4.0.

Note: The Kleopatra in upcoming versions of Gpg4win 5 will have AboutData::version set to gpg4win-5.0.0 (or gpg4win-5.0.0-beta190 for beta versions). See T7666: Kleopatra: Rework versioning.

May 28 2025, 3:45 PM · gpd5x (gpd-5.0.0), Bug Report, kleopatra

May 27 2025

collinfunk added a comment to T7667: gpg-agent fails to build on Cygwin..

Thanks, that was the only issue building there.

May 27 2025, 6:02 PM · Cygwin, gpgagent, Bug Report
ikloecker added a comment to T7656: Kleopatra: Wrong update suggestion from 5.0.0 to 4.4.0.

Note: The Kleopatra in upcoming versions of Gpg4win 5 will have AboutData::version set to gpg4win-5.0.0 (or gpg4win-5.0.0-beta190 for beta versions). See T7666: Kleopatra: Rework versioning.

May 27 2025, 5:26 PM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
werner assigned T7656: Kleopatra: Wrong update suggestion from 5.0.0 to 4.4.0 to TobiasFella.

This should compare the gpg4win version number:

May 27 2025, 4:34 PM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
werner triaged T7657: Kleopatra: Refresh OpenPGP Certificates doesn't respect WKD setting as High priority.
May 27 2025, 4:30 PM · Feature Request, kleopatra
werner triaged T7658: Okular: Dirmngr startup timeout on signature validation as Normal priority.
May 27 2025, 4:30 PM · gpd5x (gpd-5.0.0), Bug Report, okular
werner triaged T7660: GPGME invocation by cri-o hangs on gpgme_op_verify as Normal priority.
May 27 2025, 4:29 PM · golang, gpgme, Bug Report
sj98ta added a comment to T7660: GPGME invocation by cri-o hangs on gpgme_op_verify.

I updated the github issue. The suggested change seems to have had no effect.

May 27 2025, 4:22 PM · golang, gpgme, Bug Report
sj98ta added a comment to T7660: GPGME invocation by cri-o hangs on gpgme_op_verify.

Thank you @alexk

May 27 2025, 2:56 PM · golang, gpgme, Bug Report
alexk added a comment to T7660: GPGME invocation by cri-o hangs on gpgme_op_verify.

I made a comment on github.

May 27 2025, 1:43 PM · golang, gpgme, Bug Report
werner closed T7667: gpg-agent fails to build on Cygwin. as Resolved.

Please re-open if you find other Cygwin related build problems.

May 27 2025, 11:59 AM · Cygwin, gpgagent, Bug Report
werner added a comment to T7667: gpg-agent fails to build on Cygwin..

You know that Cygwin is not supported but if that is the only place it should not arm to fix it.

May 27 2025, 11:09 AM · Cygwin, gpgagent, Bug Report
collinfunk added projects to T7667: gpg-agent fails to build on Cygwin.: gpgagent, Cygwin.
May 27 2025, 6:42 AM · Cygwin, gpgagent, Bug Report
collinfunk created T7667: gpg-agent fails to build on Cygwin..
May 27 2025, 6:41 AM · Cygwin, gpgagent, Bug Report
gniibe changed the status of T7664: tests/openpgp/ecc.scm fails when building GPG with address sanitizer from Open to Testing.
May 27 2025, 3:36 AM · gnupg, Bug Report

May 26 2025

collinfunk added a comment to T7664: tests/openpgp/ecc.scm fails when building GPG with address sanitizer.

Thanks for the quick fix. I feel a bit silly for not notcing that macro myself...

May 26 2025, 7:56 PM · gnupg, Bug Report
werner closed T7662: GPG's uncompress_ecc_q_in_canon_sexp reads past a constant string into rodata as Resolved.

Fixed in all branches but there is no potential for exploiting. See also gnupg-devel@ ML.

May 26 2025, 6:16 PM · Bug Report
werner triaged T7663: Certificated signed using SHA-1 isn't trusted, but needs --force-sign-key to re-sign. as Low priority.

This should do the trick (master) but have not yet tested it:

May 26 2025, 6:07 PM · gnupg26, Feature Request
ikloecker closed T7665: gpgmepp GIT head build-error as Resolved.

Fixed. Thanks for the report!

May 26 2025, 10:18 AM · gpgmepp, Bug Report
ikloecker claimed T7665: gpgmepp GIT head build-error.
May 26 2025, 9:43 AM · gpgmepp, Bug Report
gniibe changed the status of T5964: gnupg should use the KDFs implemented in libgcrypt, a subtask of T6191: FIPS: Supporting running FIPS enabled machine, from Open to Testing.
May 26 2025, 6:32 AM · gnupg24, FIPS, Bug Report
gniibe added a comment to T7664: tests/openpgp/ecc.scm fails when building GPG with address sanitizer.

Thank you.

May 26 2025, 4:32 AM · gnupg, Bug Report
gniibe claimed T7664: tests/openpgp/ecc.scm fails when building GPG with address sanitizer.
May 26 2025, 1:54 AM · gnupg, Bug Report

May 25 2025

ametzler1 created T7665: gpgmepp GIT head build-error.
May 25 2025, 2:34 PM · gpgmepp, Bug Report
ukleinek added a comment to T7663: Certificated signed using SHA-1 isn't trusted, but needs --force-sign-key to re-sign..

Maybe related:

May 25 2025, 12:08 AM · gnupg26, Feature Request

May 24 2025

collinfunk created T7664: tests/openpgp/ecc.scm fails when building GPG with address sanitizer.
May 24 2025, 9:10 PM · gnupg, Bug Report
ukleinek created T7663: Certificated signed using SHA-1 isn't trusted, but needs --force-sign-key to re-sign..
May 24 2025, 7:53 PM · gnupg26, Feature Request
collinfunk created T7662: GPG's uncompress_ecc_q_in_canon_sexp reads past a constant string into rodata.
May 24 2025, 8:46 AM · Bug Report

May 23 2025

werner closed T7506: GnuPG: Error when adding ECDSA subkey in batch mode with quick-add-key "Wrong key usage" as Resolved.
May 23 2025, 11:59 AM · gnupg26, gnupg24, Bug Report
gniibe closed T7457: gpg --full-gen-key doesn't show list of keys on card (regression) as Resolved.
May 23 2025, 10:18 AM · gnupg26, gnupg24, Bug Report

May 22 2025

alexk merged task T7661: GpgEX: encrypting a file with umlaut in the name results in an error into T6727: GpgEX: Unicode in file or foldername causes error.
May 22 2025, 5:22 PM · Windows, Bug Report, gpgex
alexk created T7661: GpgEX: encrypting a file with umlaut in the name results in an error.
May 22 2025, 5:12 PM · Windows, Bug Report, gpgex
timegrid added a comment to T7658: Okular: Dirmngr startup timeout on signature validation.

That screenshot is for kleopatra crashing, not related to okular.

May 22 2025, 2:08 PM · gpd5x (gpd-5.0.0), Bug Report, okular
timegrid updated the task description for T7658: Okular: Dirmngr startup timeout on signature validation.
May 22 2025, 2:07 PM · gpd5x (gpd-5.0.0), Bug Report, okular
alexk lowered the priority of T6865: Email will be sent encrypted after draft was saved in encrypted state although encryption is disabled from Normal to Low.
May 22 2025, 1:56 PM · gpd5x, gpgol, Bug Report
alexk closed T6885: Forwarding mail with attachments embeded into the *.eml file will trigger GpgOL reporting an index out of range as Resolved.
May 22 2025, 1:44 PM · gpgol, Restricted Project, Bug Report, gpg4win

May 21 2025

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

That screenshot is for kleopatra crashing, not related to okular.

May 21 2025, 9:07 AM · gpd5x (gpd-5.0.0), Bug Report, okular

May 20 2025

TobiasFella added a comment to T7656: Kleopatra: Wrong update suggestion from 5.0.0 to 4.4.0.

The problem here is that the version number in kleopatra is still 4.0.0-something, which is then compared to 4.4.0.

May 20 2025, 2:34 PM · gpd5x (gpd-5.0.0), Bug Report, kleopatra
sj98ta created T7660: GPGME invocation by cri-o hangs on gpgme_op_verify.
May 20 2025, 1:40 PM · golang, gpgme, Bug Report

May 19 2025

werner added a comment to T7627: gpgme(qt) testsuite error on 32bit archs with 64bit time_t.

We won't apply any fixes to the cpp, QT, or Python language bindings in the 1.24 branch. The Qt branch has been factored out to the gpgmeqt project on request from the KDE folks. And yes, we should add projects (tags) for gpgmepp and gpgmeqt.

May 19 2025, 4:34 PM · gpgme, Bug Report
chengr28 added a comment to T7577: GnuPG could not work when TCP congestion provider is set to BBR2 in Windows.

Spent some time discovering and unfortunately it's Windows's bug in loopback interface.
I wrote a test demo (blocking mode) to exchange data and watched their packets, found that network stack would drop packets when congestion control algorithm is set to BBR2. It seems the second data exchange was broken.

May 19 2025, 3:20 PM · Support, Not A Bug, gnupg, Bug Report
werner closed T7647: cipher/simd-common-riscv.h missing from libgcrypt 1.11.1 tarball as Resolved.

Problem noted in T7166

May 19 2025, 12:16 PM · riscv, libgcrypt, Bug Report
werner added a comment to T7647: cipher/simd-common-riscv.h missing from libgcrypt 1.11.1 tarball.

Patch applied.

May 19 2025, 12:12 PM · riscv, libgcrypt, Bug Report
ebo moved T6926: No tray icon for Kleopatra in dark mode on Windows. from Restricted Project Column to Restricted Project Column on the Restricted Project board.
May 19 2025, 11:48 AM · Restricted Project, Bug Report, Windows, kleopatra

May 17 2025

collinfunk added a comment to T7647: cipher/simd-common-riscv.h missing from libgcrypt 1.11.1 tarball.

I can confirm this. Here is the build error:

make[2]: Entering directory '/home/collinfunk/libgcrypt-1.11.1/cipher'
`echo /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..  -I../src -I../src -I../mpi -I../mpi  -I/home/collinfunk/tmp/include -g -O2 -fvisibility=hidden -fno-delete-null-pointer-checks -Wall -O2 -march=rv64imafdcv -mstrict-align -c rijndael-vp-riscv.c | sed -e 's/-fsanitize[=,\-][=,a-z,A-Z,0-9,\,,\-]*//g' -e 's/-fprofile[=,\-][=,a-z,A-Z,0-9,\,,\-]*//g' -e 's/-fcoverage[=,\-][=,a-z,A-Z,0-9,\,,\-]*//g' `
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I../src -I../src -I../mpi -I../mpi -I/home/collinfunk/tmp/include -g -O2 -fvisibility=hidden -fno-delete-null-pointer-checks -Wall -O2 -march=rv64imafdcv -mstrict-align -c rijndael-vp-riscv.c  -fPIC -DPIC -o .libs/rijndael-vp-riscv.o
rijndael-vp-riscv.c:58:10: fatal error: simd-common-riscv.h: No such file or directory
   58 | #include "simd-common-riscv.h"
      |          ^~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[2]: *** [Makefile:1730: rijndael-vp-riscv.lo] Error 1

Patch here: https://lists.gnupg.org/pipermail/gcrypt-devel/2025-May/005854.html

May 17 2025, 6:13 AM · riscv, libgcrypt, Bug Report

May 16 2025

timegrid updated the task description for T7658: Okular: Dirmngr startup timeout on signature validation.
May 16 2025, 4:30 PM · gpd5x (gpd-5.0.0), Bug Report, okular
timegrid updated the task description for T7658: Okular: Dirmngr startup timeout on signature validation.
May 16 2025, 4:27 PM · gpd5x (gpd-5.0.0), Bug Report, okular
timegrid created T7658: Okular: Dirmngr startup timeout on signature validation.
May 16 2025, 4:00 PM · gpd5x (gpd-5.0.0), Bug Report, okular
timegrid created T7657: Kleopatra: Refresh OpenPGP Certificates doesn't respect WKD setting.
May 16 2025, 11:19 AM · Feature Request, kleopatra
timegrid created T7656: Kleopatra: Wrong update suggestion from 5.0.0 to 4.4.0.
May 16 2025, 9:25 AM · gpd5x (gpd-5.0.0), Bug Report, kleopatra

May 15 2025

werner added a comment to T7634: libgcrypt's test t-thread-local fails to link on some platforms..

Also pushed to 1.11

May 15 2025, 9:48 PM · NetBSD, libgcrypt, Bug Report
gniibe changed the status of T7648: Decryption to a Ky768_Cv25519 key does not work if the Cv25519 key is on a token from Open to Testing.
May 15 2025, 1:54 AM · PQC, Bug Report
gniibe closed T7621: libgpg-error: __non_string for GCC 15 or later, a subtask of T7617: libgcrypt: Add __nonstring__ attribute for data for GCC 15 or later, as Resolved.
May 15 2025, 1:51 AM · libgcrypt, Bug Report
gniibe closed T7621: libgpg-error: __non_string for GCC 15 or later as Resolved.
May 15 2025, 1:51 AM · gpgrt, Bug Report

May 14 2025

werner added a comment to T7589: Unable to export SSH keys for ED25519 keys generate on a SmartCard.

Using the primary key for ssh was not intended and thus not tested. I have not yet found the time too look closer at your report. Just one remark:

May 14 2025, 12:32 PM · gnupg, ssh, Bug Report
werner added a project to T7589: Unable to export SSH keys for ED25519 keys generate on a SmartCard: gnupg.
May 14 2025, 12:07 PM · gnupg, ssh, Bug Report
gouttegd added a comment to T7648: Decryption to a Ky768_Cv25519 key does not work if the Cv25519 key is on a token.

Thank you again for the reactivity! Applied, everything seems to work just fine.

May 14 2025, 10:17 AM · PQC, Bug Report
werner triaged T7653: Fix gpg's passwd for Kyber with the ecc part on a card as Normal priority.
May 14 2025, 10:05 AM · Bug Report, gnupg26
gniibe added a comment to T7648: Decryption to a Ky768_Cv25519 key does not work if the Cv25519 key is on a token.

For prompting, I pushed a fix in rG45a11327f3bd: agent: Support the use case of composite PQC for prompting.
Thank you for testing.

May 14 2025, 4:48 AM · PQC, Bug Report

May 13 2025

gouttegd added a comment to T7648: Decryption to a Ky768_Cv25519 key does not work if the Cv25519 key is on a token.

Thanks! With that patch applied, decryption works fine.

May 13 2025, 10:04 PM · PQC, Bug Report
werner closed T7171: Allow for empty Subject in X.509 as Resolved.
May 13 2025, 3:21 PM · libksba, Bug Report, gnupg, S/MIME
werner closed T6941: gpgsm/dirmngr: support for end-entity certificates with an empty "Subject DN", a subtask of T7171: Allow for empty Subject in X.509, as Resolved.
May 13 2025, 3:00 PM · libksba, Bug Report, gnupg, S/MIME
werner added a subtask for T7171: Allow for empty Subject in X.509: T6941: gpgsm/dirmngr: support for end-entity certificates with an empty "Subject DN".
May 13 2025, 2:58 PM · libksba, Bug Report, gnupg, S/MIME
gniibe added a comment to T7648: Decryption to a Ky768_Cv25519 key does not work if the Cv25519 key is on a token.

Thank you for the concrete test case, it helps me.

May 13 2025, 8:47 AM · PQC, Bug Report
gniibe claimed T7648: Decryption to a Ky768_Cv25519 key does not work if the Cv25519 key is on a token.
May 13 2025, 4:42 AM · PQC, Bug Report
gniibe closed T6512: keyboxd with data pipe as Resolved.
May 13 2025, 3:07 AM · gnupg26, Bug Report

May 12 2025

timegrid moved T5304: Kleopatra: Main certificate view does not keep selected column width from WIP to Done on the gpd5x board.

looks good to me on gpg4win-5.0.0-beta190@win10

May 12 2025, 1:27 PM · gpd5x (gpd-5.0.0), Bug Report, kleopatra, gpg4win

May 11 2025

gouttegd created T7648: Decryption to a Ky768_Cv25519 key does not work if the Cv25519 key is on a token.
May 11 2025, 10:39 PM · PQC, Bug Report

May 9 2025

TobiasFella changed the status of T7644: Kleopatra: 'Show Audit Log' in signature verification needs two clicks to open from Open to Testing.
May 9 2025, 11:59 AM · gpd5x (gpd-5.0.0), vsd34, Bug Report, kleopatra
werner renamed T7645: Kleopatra: Encoding errors in signature verification audit log (timestamps) from Kleopatra: Encoding errors in signature verification audit log to Kleopatra: Encoding errors in signature verification audit log (timestamps).
May 9 2025, 9:26 AM · gnupg26, gpd5x, Bug Report
werner triaged T7645: Kleopatra: Encoding errors in signature verification audit log (timestamps) as Low priority.

I think we have another report on this in the tracker. The problem is indeed the ugly Windows time functions to print a string. Let me only remind that until a few years, Windows had the opinion that Germany uses the Westeuropäische Zeit like Portugal or the UK.

May 9 2025, 9:25 AM · gnupg26, gpd5x, Bug Report
werner added a project to T7647: cipher/simd-common-riscv.h missing from libgcrypt 1.11.1 tarball: riscv.
May 9 2025, 9:21 AM · riscv, libgcrypt, Bug Report
werner added a comment to T7647: cipher/simd-common-riscv.h missing from libgcrypt 1.11.1 tarball.

That is quite possible because we do not have a test system for RISC-V and the make release tarbegt is not abale to verify this.

May 9 2025, 9:21 AM · riscv, libgcrypt, Bug Report

May 8 2025

ikloecker added a comment to T7620: gpgme_get_key fails to detect secret encryption subkey after key generation on card (until context is recreated).

I think it would be much better if GnuPG automatically performed a key listing immediately after key generation when a smartcard is involved. This would allow GnuPG to detect the presence of the subkey on the card right away, rather than leaving it marked as a stub until the user manually lists keys.

May 8 2025, 9:14 PM · gnupg26, gnupg, Bug Report
Saturneric added a comment to T7620: gpgme_get_key fails to detect secret encryption subkey after key generation on card (until context is recreated).

I see that you generated the secret encryption subkey with backup. This means that the secret subkey is generated on your computer, then copied to the card, and then deleted from your computer. The deletion is the reason why the subkey is marked as stub. Only after listing the keys on the card gpg notices that the secret key is actually on the card.

May 8 2025, 6:37 PM · gnupg26, gnupg, Bug Report
atsampson created T7647: cipher/simd-common-riscv.h missing from libgcrypt 1.11.1 tarball.
May 8 2025, 5:41 PM · riscv, libgcrypt, Bug Report
TobiasFella moved T7644: Kleopatra: 'Show Audit Log' in signature verification needs two clicks to open from Backlog to WIP on the gpd5x board.
May 8 2025, 3:55 PM · gpd5x (gpd-5.0.0), vsd34, Bug Report, kleopatra