Page MenuHome GnuPG

Bug Report
ActivePublic

Members

  • This project does not have any members.
  • View All

Recent Activity

Today

werner closed T7105: libgpg-error: Memory leak in store_alias() as Resolved.

Oh yeah the idea to implement aliases is more than 20 years old. I guess it is even older. Thanks.

Fri, Apr 26, 3:28 PM · gpgrt, Bug Report
Jakuje created T7105: libgpg-error: Memory leak in store_alias().
Fri, Apr 26, 9:35 AM · gpgrt, Bug Report

Wed, Apr 24

werner closed T7100: Error in the patch "Allow to disable signing with authenticode-sign.sh" as Resolved.
Wed, Apr 24, 9:01 AM · gpg4win, Bug Report
werner added a comment to T7100: Error in the patch "Allow to disable signing with authenticode-sign.sh".

Thanks for the patch.

Wed, Apr 24, 8:58 AM · gpg4win, Bug Report

Tue, Apr 23

vitusb created T7100: Error in the patch "Allow to disable signing with authenticode-sign.sh".
Tue, Apr 23, 7:44 PM · gpg4win, Bug Report

Mon, Apr 22

gniibe closed T5436: gpg-agent 2.3.1: PIN caching not working for decrypt operations as Resolved.

Please continue on T7041. This ticket is going to be closed (as the problem described was fixed already).

Mon, Apr 22, 8:09 AM · gnupg24, yubikey, Bug Report
werner closed T7093: c23 boolean issue in GPG asschk.c as Resolved.

Okay, fix pushed to master, 2.4, and 2.2. Thanks.

Mon, Apr 22, 8:07 AM · gnupg, Bug Report
gniibe changed the status of T7058: KDF-DO is not properly implemented from Open to Testing.

Applied to 2.4 branch.

Mon, Apr 22, 8:07 AM · scd, gnupg, Bug Report
gniibe changed the status of T7071: gpg: Support of No CRC in ASCII armor from Open to Testing.

Applied to 2.4 branch.

Mon, Apr 22, 8:05 AM · gnupg, Bug Report

Sat, Apr 20

jeffcliff renamed T7093: c23 boolean issue in GPG asschk.c from c23 boolean issue in asschk.c to c23 boolean issue in GPG asschk.c.
Sat, Apr 20, 5:56 AM · gnupg, Bug Report
jeffcliff added a comment to T7093: c23 boolean issue in GPG asschk.c.
  • gnupg-2.4.5/tests/asschk.c 2023-04-04 02:28:39.000000000 -0600

+++ gnupg-2.4.5-c23/tests/asschk.c 2024-04-19 21:21:36.460724329 -0600
@@ -656,13 +656,13 @@
static int
eval_boolean (const char *cond)
{

  • int true = 1;

+ int tr = 1;

Sat, Apr 20, 5:50 AM · gnupg, Bug Report
jeffcliff created T7093: c23 boolean issue in GPG asschk.c.
Sat, Apr 20, 5:38 AM · gnupg, Bug Report

Tue, Apr 16

mdawar added a comment to T5436: gpg-agent 2.3.1: PIN caching not working for decrypt operations.

Yes I have pcsc-shared in my scdaemon.conf.
I've just tried removing both pcsc-shared and disable-application piv and PIN caching worked as expected.

Tue, Apr 16, 8:00 AM · gnupg24, yubikey, Bug Report
gniibe added a comment to T5436: gpg-agent 2.3.1: PIN caching not working for decrypt operations.

Are you using PC/SC shared mode? If so, it may be the case of T7041.

Tue, Apr 16, 7:16 AM · gnupg24, yubikey, Bug Report

Mon, Apr 15

werner edited projects for T5436: gpg-agent 2.3.1: PIN caching not working for decrypt operations, added: gnupg24; removed gnupg (gpg23).
Mon, Apr 15, 8:58 PM · gnupg24, yubikey, Bug Report
werner reopened T5436: gpg-agent 2.3.1: PIN caching not working for decrypt operations as "Open".
Mon, Apr 15, 8:58 PM · gnupg24, yubikey, Bug Report
mdawar added a comment to T5436: gpg-agent 2.3.1: PIN caching not working for decrypt operations.

I just wanted to report that I'm having this issue on Fedora 39, with GnuPG version 2.4.4.
I'm being asked for the PIN for every operation (Sign, Decrypt, Authenticate) I'm having this issue on 2 different laptops using YubiKey 5C NFC and YubiKey 5C Nano (Firmware version: 5.4.3).
I tried disabling PIV (disable-application piv) and then PIN caching started working again, so I just wanted to report this as it's marked as resolved.

Mon, Apr 15, 8:20 PM · gnupg24, yubikey, Bug Report
gniibe added a comment to T7058: KDF-DO is not properly implemented.

@mwalle Thank you for your testing.
Applied to master.
After testing, I'll also apply to 2.4 branch.

Mon, Apr 15, 4:14 AM · scd, gnupg, Bug Report

Fri, Apr 12

mwalle added a comment to T7058: KDF-DO is not properly implemented.

FWIW, I've tested this patch and it works fine with both KDF as a constructed tag and as a primitive tag.

Fri, Apr 12, 2:30 PM · scd, gnupg, Bug Report
gniibe added a comment to T7058: KDF-DO is not properly implemented.

I'm considering applying the following patch. With this change, scdaemon will works well with a card implementation which consider F9 (wrongly) as primitive data object, as well as correct card implementation.

diff --git a/scd/app-openpgp.c b/scd/app-openpgp.c
index 26ac91ea2..09223ce33 100644
--- a/scd/app-openpgp.c
+++ b/scd/app-openpgp.c
@@ -410,6 +410,10 @@ get_cached_data (app_t app, int tag,
   size_t len;
   struct cache_s *c;
   int exmode;
+  int do_constructed = 0;
+
+  if ((tag < 0x0100 && (tag & 0x20)) || (tag >= 0x0100 && (tag & 0x2000)))
+    do_constructed = 1;
Fri, Apr 12, 9:01 AM · scd, gnupg, Bug Report

Tue, Apr 9

werner added projects to T7066: Communication with Yubikey hangs in scdaemon: yubikey, Arch.
Tue, Apr 9, 1:44 PM · Arch, yubikey, Bug Report
werner triaged T7041: Yubikey (PGP + PIV) --pcsc-shared: PIN requires every time as Normal priority.
Tue, Apr 9, 1:42 PM · yubikey, gnupg24, scd, Bug Report
gniibe added a comment to T7071: gpg: Support of No CRC in ASCII armor.

Applied to master. If no problem will be found, I'll apply to 2.4 branch too.
Let's see.

Tue, Apr 9, 7:16 AM · gnupg, Bug Report

Mon, Apr 8

werner added a comment to T7074: gpg fails with error if you delete the ~/.gnupg directory.

I guess the agent was still running when you deleted and soon re-created the ~/.gnupg directory. The agent is responsible for the private keys subdir and it did not yet noticed that its homedir (and thie subdir) vanished. Depending on your system the agent should terminate itself after some time in case the homedirectory was deleted. Thus to remove the homedir please use

Mon, Apr 8, 8:52 AM · Support, gnupg
gniibe updated the task description for T7071: gpg: Support of No CRC in ASCII armor.
Mon, Apr 8, 4:36 AM · gnupg, Bug Report

Sun, Apr 7

bryonbaker updated the task description for T7074: gpg fails with error if you delete the ~/.gnupg directory.
Sun, Apr 7, 8:39 AM · Support, gnupg
bryonbaker updated the task description for T7074: gpg fails with error if you delete the ~/.gnupg directory.
Sun, Apr 7, 8:38 AM · Support, gnupg
bryonbaker updated the task description for T7074: gpg fails with error if you delete the ~/.gnupg directory.
Sun, Apr 7, 8:38 AM · Support, gnupg
bryonbaker created T7074: gpg fails with error if you delete the ~/.gnupg directory.
Sun, Apr 7, 8:33 AM · Support, gnupg

Fri, Apr 5

TobiasFella moved T6447: Kleopatra: "imported certificates" tab inconsistencies from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Fri, Apr 5, 12:02 PM · Restricted Project, Bug Report, kleopatra
TobiasFella moved T6950: Kleopatra: Usability improvements for directory services configuration from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Fri, Apr 5, 10:35 AM · Restricted Project, Bug Report, gpg4win
TobiasFella claimed T6950: Kleopatra: Usability improvements for directory services configuration.
Fri, Apr 5, 10:34 AM · Restricted Project, Bug Report, gpg4win
gniibe added a comment to T7071: gpg: Support of No CRC in ASCII armor.

The following patch works.

Fri, Apr 5, 9:32 AM · gnupg, Bug Report

Thu, Apr 4

gniibe claimed T7071: gpg: Support of No CRC in ASCII armor.
Thu, Apr 4, 9:03 AM · gnupg, Bug Report
gniibe created T7071: gpg: Support of No CRC in ASCII armor.
Thu, Apr 4, 9:02 AM · gnupg, Bug Report

Wed, Apr 3

werner closed T6515: GPG in FIPS mode spits out useless "out of core handler ignored in FIPS mode" message on every execution as Resolved.
Wed, Apr 3, 9:28 AM · FIPS, Bug Report

Tue, Apr 2

Mnaisoa added a comment to T3907: Internal error when encrypting to cacert certificate.
Tue, Apr 2, 9:27 AM · Bug Report, S/MIME, gpg4win
Mnaisoa added a comment to T7039: Kleopatra: Configuration dialog doesn't work.
Tue, Apr 2, 4:31 AM · KF6, kleopatra, Restricted Project, Bug Report

Fri, Mar 29

npreining added a comment to T7066: Communication with Yubikey hangs in scdaemon.

Please wait investigating it, a downgrade of the *kernel* from 6.8.2 to 6.8.1 helped. It seemed the USB communication got broken with 6.8.2. I am investigating

Fri, Mar 29, 10:10 AM · Arch, yubikey, Bug Report
npreining added a comment to T7066: Communication with Yubikey hangs in scdaemon.

I rebooted, edited the scdaemon.conf to match the above, and tried gpg --edit-card with the yubikey plugged in. It resulted in the same output:

Fri, Mar 29, 1:14 AM · Arch, yubikey, Bug Report

Thu, Mar 28

werner triaged T7068: Two typos in italian i18n PO file as Normal priority.
Thu, Mar 28, 3:32 PM · gnupg, i18n, Bug Report
cage2 created T7068: Two typos in italian i18n PO file.
Thu, Mar 28, 2:15 PM · gnupg, i18n, Bug Report
Jakuje added a comment to T7065: pinentry 1.3.0 ships desktop file with icons, but does not install them.

For the reference, for now i just did the dummy install in the Fedora spec file:

Thu, Mar 28, 1:30 PM · pinentry, Bug Report
werner added a comment to T7066: Communication with Yubikey hangs in scdaemon.

Please use

Thu, Mar 28, 1:22 PM · Arch, yubikey, Bug Report
werner assigned T7065: pinentry 1.3.0 ships desktop file with icons, but does not install them to TobiasFella.

Tobias, if you find some time, can you please see how this can be done.

Thu, Mar 28, 1:18 PM · pinentry, Bug Report
ballapete added a comment to T7056: GPGme 1.23.2 has Undefined symbols: "strcasecmp(char const*, char const*)" on Mac OS X 10.4.11, PPC Tiger.

Trying to reach Ralph Seichter via the eMail address he is using failed – Osterferien?

Thu, Mar 28, 12:41 PM · gpgme, MacOS, Bug Report
npreining created T7066: Communication with Yubikey hangs in scdaemon.
Thu, Mar 28, 12:16 PM · Arch, yubikey, Bug Report
Jakuje created T7065: pinentry 1.3.0 ships desktop file with icons, but does not install them.
Thu, Mar 28, 12:15 PM · pinentry, Bug Report
ebo closed T6830: Kleopatra: Smart card view does not show any certificates if one certficate could not be listed as Resolved.

The certificates from the same test smart card work in Version 3.2.2.231170 (Gpg4win-4.3.1), too, but there all certificates are shown, that is one more than in the VSD version. Seems gpg2.4 can handle certificates which 2.2 does not accept. But that is nothing to complain about.

Thu, Mar 28, 11:46 AM · vsd32 (vsd-3.2.0), Restricted Project, kleopatra, Bug Report
werner added a comment to T7058: KDF-DO is not properly implemented.

Please keep also in mind that the OpenPGP card specification has always and is still developed along with GnuPG . Thus if there are any uncertainties in the specification GnuPG's way of handling thing is the way to go. If there is a way to chnage things without risking any breakage we can of course fix that. In all other cases we need to continue wit the current way. For larger changes in the spec we can of course cleanup stuff - Achim is currently reworking on a revision.

Thu, Mar 28, 10:05 AM · scd, gnupg, Bug Report