Page MenuHome GnuPG
Feed Advanced Search

Yesterday

werner closed T6646: GpgOL: signature not displayed if mail is saved in the filesystem as Resolved by committing rOd15d0d12d87c: Fix T6646, Show signature status in ribbon for filesystem Emails.
Tue, Apr 1, 3:09 PM · Restricted Project, Bug Report, gpgol
Saturneric added a comment to T7591: Request a git tag of GpgME v2.14.2.

Okay, thanks, I may join it later.

Tue, Apr 1, 2:52 PM · gpgme (gpgme 1.24.x), Bug Report
werner closed T7592: sha256sum on Windows 32bit calculates wrong values for files > 256 GiByte as Resolved.

I did not run the full tests becaue those would take some hours but one test case using the genhashdata tool from the libgcrypt test suite gives the correct value (see genhashdata.c source)

Tue, Apr 1, 11:16 AM · Bug Report, gpg4win
werner triaged T7592: sha256sum on Windows 32bit calculates wrong values for files > 256 GiByte as Low priority.

the included tools are intended to bootstrap things and are not optimized in any way. We don't run large data test either. Someone will look into it, thoigh. A better way is to use

Tue, Apr 1, 9:42 AM · Bug Report, gpg4win

Mon, Mar 31

gniibe added a comment to T7519: libgcrypt: (EC)DSA signature generation should be constant-time.

Pushed all changes to master.

Mon, Mar 31, 6:27 AM · libgcrypt, Bug Report

Sun, Mar 30

werner closed T7591: Request a git tag of GpgME v2.14.2 as Resolved.

Sorry, I sometimes forget to push the tags. If you have access to a jabber/xmpp client you may join the gnupg-devel@chat-gnupg.org muti-user-chat and ping us there.

Sun, Mar 30, 2:32 PM · gpgme (gpgme 1.24.x), Bug Report

Sat, Mar 29

Saturneric created T7591: Request a git tag of GpgME v2.14.2.
Sat, Mar 29, 12:20 AM · gpgme (gpgme 1.24.x), Bug Report

Thu, Mar 27

hamarituc updated the task description for T7589: Unable to export SSH keys for ED25519 keys generate on a SmartCard.
Thu, Mar 27, 11:54 AM · Bug Report
hamarituc created T7589: Unable to export SSH keys for ED25519 keys generate on a SmartCard.
Thu, Mar 27, 11:40 AM · Bug Report

Wed, Mar 26

gniibe changed the status of T7576: keyboxd: Searching <email@Example.COM> from Open to Testing.
Wed, Mar 26, 8:20 AM · gnupg, Bug Report
gniibe added a comment to T7576: keyboxd: Searching <email@Example.COM>.

OK. Relying on SQLite semantics for COLLATE NOCASE would not be good.
Exactly same existing semantics (only care about ASCII uppercase characters) is good.

Wed, Mar 26, 6:26 AM · gnupg, Bug Report

Mon, Mar 24

ikloecker added a comment to T7583: 2.5.5 removes sig on clean that 2.5.4 and earlier kept.

I noticed that the signing key B0D589D46708EC99 is a certify-only key. That signatures made with this key are dropped could be another regression of the fix for dkj's DoS bug.

Mon, Mar 24, 10:50 PM · gnupg, Bug Report
ametzler1 added a comment to T7583: 2.5.5 removes sig on clean that 2.5.4 and earlier kept.

Taking a bigger sample of keys from the same domain and doing the same testing shows that the signature by B0D589D46708EC99 is removed on all keys.

Mon, Mar 24, 6:32 PM · gnupg, Bug Report
werner added a comment to T7576: keyboxd: Searching <email@Example.COM>.

You mean this would be better becuase it is not clear how we handle X.509 addrsppec (see override_mbox arg of store_into_userid)? I guess COLLATE NOCASE does it the standard way by folding all uppercase characters and not just the ASCII characters as we do in GnuPG. This would be a problem.

Mon, Mar 24, 9:45 AM · gnupg, Bug Report

Sun, Mar 23

ametzler1 renamed T7583: 2.5.5 removes sig on clean that 2.5.4 and earlier kept from 2.5.5 remves sig on clean that 2.5.4 and earlier kept to 2.5.5 removes sig on clean that 2.5.4 and earlier kept.
Sun, Mar 23, 12:49 PM · gnupg, Bug Report
ametzler1 created T7583: 2.5.5 removes sig on clean that 2.5.4 and earlier kept.
Sun, Mar 23, 12:49 PM · gnupg, Bug Report

Fri, Mar 21

werner triaged T7577: GnuPG could not work when TCP congestion provider is set to BBR2 in Windows as Normal priority.

Indeed, GnuPG's IPC uses TCP connections from 127.0.0.1 to 127.0.0.1 taking the destination port (and a cookie) from a file. We can't change that easily to the new Unix socket implementation Windows recently introduced. I hope there is a way to exclude localhost->localhost from congestion control.

Fri, Mar 21, 8:43 PM · Support, Not A Bug, gnupg, Bug Report
ebo moved T5304: Kleopatra: Main certificate view does not keep selected column width from Backlog to WIP on the gpd5x board.
Fri, Mar 21, 5:08 PM · gpd5x, Bug Report, kleopatra, gpg4win
ebo edited projects for T5304: Kleopatra: Main certificate view does not keep selected column width, added: gpd5x; removed Restricted Project.
Fri, Mar 21, 5:07 PM · gpd5x, Bug Report, kleopatra, gpg4win
gniibe added a comment to T7576: keyboxd: Searching <email@Example.COM>.

I changed my mind. SQLite specific patch might be better:

diff --git a/kbx/backend-sqlite.c b/kbx/backend-sqlite.c
index 4c67c3ef7..1db2f2c8d 100644
--- a/kbx/backend-sqlite.c
+++ b/kbx/backend-sqlite.c
@@ -154,7 +154,7 @@ static struct
      /* The full user id - for X.509 the Subject or altSubject.  */
      "uid  TEXT NOT NULL,"
      /* The mail address if available or NULL.  */
-     "addrspec TEXT,"
+     "addrspec TEXT COLLATE NOCASE,"
      /* The type of the public key: 1 = openpgp, 2 = X.509.  */
      "type  INTEGER NOT NULL,"
      /* The order number of the user id within the keyblock or
Fri, Mar 21, 8:50 AM · gnupg, Bug Report
gniibe added a comment to T7576: keyboxd: Searching <email@Example.COM>.

I changed my mind. SQLite specific patch might be better:

diff --git a/kbx/backend-sqlite.c b/kbx/backend-sqlite.c
index 4c67c3ef7..1db2f2c8d 100644
--- a/kbx/backend-sqlite.c
+++ b/kbx/backend-sqlite.c
@@ -154,7 +154,7 @@ static struct
      /* The full user id - for X.509 the Subject or altSubject.  */
      "uid  TEXT NOT NULL,"
      /* The mail address if available or NULL.  */
-     "addrspec TEXT,"
+     "addrspec TEXT COLLATE NOCASE,"
      /* The type of the public key: 1 = openpgp, 2 = X.509.  */
      "type  INTEGER NOT NULL,"
      /* The order number of the user id within the keyblock or
Fri, Mar 21, 8:36 AM · gnupg, Bug Report
gniibe updated the task description for T7576: keyboxd: Searching <email@Example.COM>.
Fri, Mar 21, 8:27 AM · gnupg, Bug Report
gniibe claimed T7576: keyboxd: Searching <email@Example.COM>.

Here is a possible change:

Fri, Mar 21, 8:15 AM · gnupg, Bug Report
gniibe added a comment to T7519: libgcrypt: (EC)DSA signature generation should be constant-time.

I applied some to master (generic improvement parts).

Fri, Mar 21, 7:31 AM · libgcrypt, Bug Report

Thu, Mar 20

alexk added a project to T4278: Signed mails not visible in Exchange web interface (owa): Not A Bug.
Thu, Mar 20, 11:54 AM · Not A Bug, gpgol, Bug Report, gpg4win
alexk closed T4278: Signed mails not visible in Exchange web interface (owa) as Invalid.

Is not a GpgOL bug.
Full functionality will be possible with GpgOL/WEB.

Thu, Mar 20, 11:53 AM · Not A Bug, gpgol, Bug Report, gpg4win
gniibe added a comment to T7519: libgcrypt: (EC)DSA signature generation should be constant-time.

I think that this may be the last update.
Don't use mpi_powm to avoid normalizing (and to be faster).

Thu, Mar 20, 1:08 AM · libgcrypt, Bug Report

Wed, Mar 19

chengr28 updated the task description for T7577: GnuPG could not work when TCP congestion provider is set to BBR2 in Windows.
Wed, Mar 19, 7:33 PM · Support, Not A Bug, gnupg, Bug Report
chengr28 created T7577: GnuPG could not work when TCP congestion provider is set to BBR2 in Windows.
Wed, Mar 19, 7:29 PM · Support, Not A Bug, gnupg, Bug Report
gniibe updated the task description for T7576: keyboxd: Searching <email@Example.COM>.
Wed, Mar 19, 6:11 AM · gnupg, Bug Report
gniibe updated the task description for T7576: keyboxd: Searching <email@Example.COM>.
Wed, Mar 19, 6:10 AM · gnupg, Bug Report
gniibe added a comment to T7576: keyboxd: Searching <email@Example.COM>.

IIUC, the address is stored with lowercase, but searching is done not converting lowercase.

Wed, Mar 19, 6:08 AM · gnupg, Bug Report
gniibe created T7576: keyboxd: Searching <email@Example.COM>.
Wed, Mar 19, 6:07 AM · gnupg, Bug Report

Tue, Mar 18

gniibe added a comment to T7519: libgcrypt: (EC)DSA signature generation should be constant-time.

Here is another update (replacing ecc-no-normalize-2025-03-13.patch).
Further, ec_addm is modified to be less leaky.

Tue, Mar 18, 6:30 AM · libgcrypt, Bug Report

Mon, Mar 17

werner closed T7569: `gpgconf --homedir $x --kill keyboxd` doesn't appear to terminate a running keyboxd as Resolved.
Mon, Mar 17, 10:12 AM · gnupg, keyboxd, Bug Report
werner added a comment to T7569: `gpgconf --homedir $x --kill keyboxd` doesn't appear to terminate a running keyboxd.

FWIW: It does works when using GNUPGHOME instead.

Mon, Mar 17, 9:46 AM · gnupg, keyboxd, Bug Report
gniibe added a comment to T7519: libgcrypt: (EC)DSA signature generation should be constant-time.

There are three (or more) remaining things:
(1) ec_addm can be improved by adding U and V with mpih_add_lli , subtracting P with mpih_sub_n, and adding back P with mpih_add_n_cond
(2) Places with mpi_const for the argument when calling ec_mulm, ec_add or ec_subm should be fixed (it may modify the const MPI)
(3) make sure mpi_resize within ec_addm, ec_mulm, or ec_subm if needed

Mon, Mar 17, 3:24 AM · libgcrypt, Bug Report

Fri, Mar 14

dkg added a comment to T7570: `gpg --trust-model always --verify` produces incongruous warning "Using untrusted key!".

This seems to be the case on 2.2.46 as well, fwiw. i don't think it's new in 2.4.7.

Fri, Mar 14, 8:07 PM · Not A Bug, gnupg
dkg created T7570: `gpg --trust-model always --verify` produces incongruous warning "Using untrusted key!".
Fri, Mar 14, 8:04 PM · Not A Bug, gnupg
dkg added a comment to T7569: `gpgconf --homedir $x --kill keyboxd` doesn't appear to terminate a running keyboxd.

similarly, gpgconf --homedir /tmp/gg --kill all does not terminate keyboxd, despite the fact that gpgconf(1) says:

Fri, Mar 14, 7:27 PM · gnupg, keyboxd, Bug Report
dkg created T7569: `gpgconf --homedir $x --kill keyboxd` doesn't appear to terminate a running keyboxd.
Fri, Mar 14, 7:24 PM · gnupg, keyboxd, Bug Report
werner moved T7457: gpg --full-gen-key doesn't show list of keys on card (regression) from Backlog to QA on the gnupg24 board.

Done

Fri, Mar 14, 1:20 PM · gnupg26, gnupg24, Bug Report
ikloecker reopened T7457: gpg --full-gen-key doesn't show list of keys on card (regression) as "Open".

Re-opening because I think rGaa36f6ae8bae needs to be backported to GnuPG 2.4 (see T7568). The fix for T7309 which introduced the regression has been backported to GnuPG 2.4.

Fri, Mar 14, 8:54 AM · gnupg26, gnupg24, Bug Report
hamarituc closed T7568: Keys of OpenPGP card not listed for key generation as Invalid.

Duplicate of T7457. Sorry for the noise.

Fri, Mar 14, 8:20 AM · Bug Report
dkg added a comment to T7547: signatures from revoked or expired keys show up as missing keys.

I've offered https://github.com/bestpractical/gnupg-interface/pull/16 to GnuPG::Interface, and am testing it out in debian unstable.

Fri, Mar 14, 12:33 AM · gnupg26, gnupg24, Bug Report

Thu, Mar 13

hamarituc created T7568: Keys of OpenPGP card not listed for key generation.
Thu, Mar 13, 6:56 PM · Bug Report
dkg added a comment to T7547: signatures from revoked or expired keys show up as missing keys.

I'll work on making a patch to offer a flexible test suite.

Thu, Mar 13, 6:21 PM · gnupg26, gnupg24, Bug Report
dkg added a comment to T7547: signatures from revoked or expired keys show up as missing keys.

Alternately, i suppose we could ask GnuPG::Interface to drop the variant parts of that test entirely. @werner, If you have a preference for what they test, it would be good to know. I suspect your opinion would carry weight with the maintainer there.

Thu, Mar 13, 6:20 PM · gnupg26, gnupg24, Bug Report
werner added a comment to T7547: signatures from revoked or expired keys show up as missing keys.

Well, we also have the gpgme test suite which tests a couple of other things and for obvious reasons we need to keep this stable. Granted, sometimes we had to change the gpgme test suite as well. My personal preference would be your second choice.

Thu, Mar 13, 5:51 PM · gnupg26, gnupg24, Bug Report
dkg added a comment to T7547: signatures from revoked or expired keys show up as missing keys.

Thanks for the fix for the double-free on --no-sig-cache, that appears to be an issue on all released gpg versions, as i can crash them directly when i --no-sig-cache.

Thu, Mar 13, 5:04 PM · gnupg26, gnupg24, Bug Report
ebo moved T6930: pinentry-qt window is not parented to Kleopatra on Wayland from Backlog to WIP on the gpd5x board.
Thu, Mar 13, 4:54 PM · gpd5x, kleopatra, Bug Report
ebo edited projects for T6930: pinentry-qt window is not parented to Kleopatra on Wayland, added: gpd5x; removed Restricted Project.
Thu, Mar 13, 4:54 PM · gpd5x, kleopatra, Bug Report
TobiasFella added a comment to T7232: Kleopatra: Crash on startup when CMS is disabled.

I think it's not exposed in the user interface. You can manually set it by adding

Thu, Mar 13, 11:44 AM · gpd5x, Bug Report, kleopatra
ebo edited projects for T7232: Kleopatra: Crash on startup when CMS is disabled, added: gpd5x; removed Restricted Project.
Thu, Mar 13, 11:40 AM · gpd5x, Bug Report, kleopatra
ebo added a comment to T7232: Kleopatra: Crash on startup when CMS is disabled.

CMS disabled? Where can this be set?

Thu, Mar 13, 11:39 AM · gpd5x, Bug Report, kleopatra
gniibe added a comment to T7519: libgcrypt: (EC)DSA signature generation should be constant-time.

Here is update (replacing ecc-no-normalize-2025-03-07.patch).

Thu, Mar 13, 7:18 AM · libgcrypt, Bug Report
vitusb added a comment to T7544: Kleopatra (gnupg, gpgsm) hang on key-creation when x.509 certs are in keystore.

Hello Eva,

Thu, Mar 13, 12:04 AM · gnupg, kleopatra, Bug Report

Wed, Mar 12

ebo added a comment to T7544: Kleopatra (gnupg, gpgsm) hang on key-creation when x.509 certs are in keystore.

The beta145 Werner talks about can be found here: https://www.gpg4win.org/version5.html
It is from our master branch which is not de-vs capable at this time.

Wed, Mar 12, 5:48 PM · gnupg, kleopatra, Bug Report
dkg added a comment to T7547: signatures from revoked or expired keys show up as missing keys.

Interestingly, from this i'm learning that the patch actually *normalizes* the output so that we see the same thing regardless of ordering. the different output based on certificate order happens only in the unpatched version.

Wed, Mar 12, 5:34 PM · gnupg26, gnupg24, Bug Report
dkg added a comment to T7547: signatures from revoked or expired keys show up as missing keys.

Please test without the --import keys.pgp -- just import filtered.pgp or filtered2.pgp.

Wed, Mar 12, 5:18 PM · gnupg26, gnupg24, Bug Report
werner added a comment to T7547: signatures from revoked or expired keys show up as missing keys.

I can't replicate your findings here . In a test directory w/o a gpg.conf:

Wed, Mar 12, 4:02 PM · gnupg26, gnupg24, Bug Report
vitusb added a comment to T7544: Kleopatra (gnupg, gpgsm) hang on key-creation when x.509 certs are in keystore.

Hello Werner,
thank you for your support ...

Wed, Mar 12, 3:36 PM · gnupg, kleopatra, Bug Report
werner added a comment to T7547: signatures from revoked or expired keys show up as missing keys.

Uihhh

Wed, Mar 12, 3:35 PM · gnupg26, gnupg24, Bug Report
werner triaged T7563: gpgpass: password file creation GUI issues as Normal priority.
Wed, Mar 12, 3:30 PM · Bug Report, gpgpass, gpd5x
dkg added a comment to T7547: signatures from revoked or expired keys show up as missing keys.

with --no-sig-cache --check-sigs i get the following error with the patch applied:

Wed, Mar 12, 2:29 PM · gnupg26, gnupg24, Bug Report
ebo edited projects for T7303: Kleopatra: Key filter combobox is cleared when saving filter appearance settings, added: gpd5x; removed Restricted Project.
Wed, Mar 12, 2:17 PM · gpd5x, kleopatra, Bug Report
TobiasFella moved T7304: Kleopatra: "All Certificates" key filter gets selected when saving a change to a key filter's appearance from Backlog to WIP on the gpd5x board.
Wed, Mar 12, 2:14 PM · gpd5x, kleopatra, Bug Report
TobiasFella edited projects for T7304: Kleopatra: "All Certificates" key filter gets selected when saving a change to a key filter's appearance, added: gpd5x; removed Restricted Project.
Wed, Mar 12, 2:14 PM · gpd5x, kleopatra, Bug Report
CarlSchwan added a comment to T7561: Issues with Okular PGP signature error.

We investigated this a bit and it only happens when trying to sign with a non VSD key when gnupg is in VSD mode

Wed, Mar 12, 1:56 PM · Bug Report, okular
svuorela added a comment to T7561: Issues with Okular PGP signature error.

Something went wrong during signing - the question is what.

Wed, Mar 12, 10:10 AM · Bug Report, okular
werner added a comment to T7547: signatures from revoked or expired keys show up as missing keys.

Did you also tried with --no-sig-cache ? That could help to get a better insight into the reason for that difference.

Wed, Mar 12, 9:27 AM · gnupg26, gnupg24, Bug Report
werner triaged T7561: Issues with Okular PGP signature error as Normal priority.
Wed, Mar 12, 9:21 AM · Bug Report, okular

Tue, Mar 11

dkg added a comment to T7547: signatures from revoked or expired keys show up as missing keys.

OK, now i really don't know what the issue is on the 2.4 branch. trying to replicate it with and without this patch, the --with-colons output of --check-sigs appears to depend on the order in which the certificates were ingested.

Tue, Mar 11, 11:05 PM · gnupg26, gnupg24, Bug Report
dkg added a comment to T7547: signatures from revoked or expired keys show up as missing keys.

hm, digging a bit further, i think the above changes have to do with third-party signatures using SHA1, *not* with expired certifiers. in 2.4.7, i see a change from % to ! for these certifications. (2.2.x, which i know is EOL) shows the difference between ? and !. I'm trying to make a simpler replicator now.

Tue, Mar 11, 9:18 PM · gnupg26, gnupg24, Bug Report
werner added a comment to T7544: Kleopatra (gnupg, gpgsm) hang on key-creation when x.509 certs are in keystore.

Please test using the latest gpg4win installer (beta145).

Tue, Mar 11, 5:17 PM · gnupg, kleopatra, Bug Report
ikloecker moved T7532: Kleopatra fails to decrypt/extract archives located at very long file paths from Backlog to WiP on the vsd33 board.

Backported for VSD 3.3.x / Gpg4win 4.4.x

Tue, Mar 11, 4:11 PM · vsd33, gpd5x, Bug Report, kleopatra
TobiasFella changed the status of T7532: Kleopatra fails to decrypt/extract archives located at very long file paths from Open to Testing.
Tue, Mar 11, 1:24 PM · vsd33, gpd5x, Bug Report, kleopatra
werner changed the status of T7547: signatures from revoked or expired keys show up as missing keys, a subtask of T7527: Keyring/keybox denial of service, from Testing to Open.
Tue, Mar 11, 11:00 AM · OpenPGP, gnupg, Bug Report
werner changed the status of T7547: signatures from revoked or expired keys show up as missing keys from Testing to Open.
Tue, Mar 11, 11:00 AM · gnupg26, gnupg24, Bug Report
dkg added a comment to T7547: signatures from revoked or expired keys show up as missing keys.

With the patch "gpg: Fix regression for the recent malicious subkey DoS fix", there is a change in how gpg --check-sigs reports certifications from expired keys.

Tue, Mar 11, 1:02 AM · gnupg26, gnupg24, Bug Report

Fri, Mar 7

dkg added a comment to T7547: signatures from revoked or expired keys show up as missing keys.

it would be great to include a test in the test suite that ensures that the --status output behaves as expected in the face of expired or revoked keys.

Fri, Mar 7, 7:58 PM · gnupg26, gnupg24, Bug Report
ebo closed T7382: Kleopatra: CertificateLineEdit popup toggled on every keypress as Resolved.

tested with version 4.0.0.250370 (Gpg4win-5.0.0-beta125): no pop-ups

Fri, Mar 7, 2:56 PM · kleopatra, gpd5x, Bug Report
ebo moved T7435: Kleopatra: Show Details does not work for certificates selected as Encrypt for others from WIP to Done on the gpd5x board.
Fri, Mar 7, 2:50 PM · vsd33 (vsd-3.3.0), gpd5x, kleopatra, Bug Report
ebo closed T7444: Kleopatra: "Disabled Certificates" filter should just be named "Disabled" as Resolved.
Fri, Mar 7, 2:48 PM · gpd5x, kleopatra, Bug Report
ebo closed T5138: Change Reset Code not working in Kleopatra as Resolved.

After testing the feature again with Beta 5.0.0-125 I repeat myself: this works.
There is the action "Unblock card" for unblocking the card with the rest code / PUK.

Fri, Mar 7, 2:15 PM · Restricted Project, Feature Request, Bug Report, kleopatra
gniibe added a comment to T7519: libgcrypt: (EC)DSA signature generation should be constant-time.

I think that major signal sources for K have been killed so far.

Fri, Mar 7, 5:35 AM · libgcrypt, Bug Report

Thu, Mar 6

werner moved T7547: signatures from revoked or expired keys show up as missing keys from Backlog to QA on the gnupg24 board.
Thu, Mar 6, 5:58 PM · gnupg26, gnupg24, Bug Report
werner changed the status of T7547: signatures from revoked or expired keys show up as missing keys, a subtask of T7527: Keyring/keybox denial of service, from Open to Testing.
Thu, Mar 6, 5:58 PM · OpenPGP, gnupg, Bug Report
werner changed the status of T7547: signatures from revoked or expired keys show up as missing keys from Open to Testing.
Thu, Mar 6, 5:58 PM · gnupg26, gnupg24, Bug Report
werner claimed T7547: signatures from revoked or expired keys show up as missing keys.
Thu, Mar 6, 2:56 PM · gnupg26, gnupg24, Bug Report
werner added a comment to T7544: Kleopatra (gnupg, gpgsm) hang on key-creation when x.509 certs are in keystore.

rG25d48663f9 seems to fix this for me. However in my test cases I got a hang in dirmngr simply by running several gpgsm instances to get the details of an X.509 key. I had different logging options enabled, though.

Thu, Mar 6, 11:27 AM · gnupg, kleopatra, Bug Report
werner lowered the priority of T7547: signatures from revoked or expired keys show up as missing keys from Unbreak Now! to High.

Please use "unbreak now" only for *released* software with a criticial bug.

Thu, Mar 6, 11:23 AM · gnupg26, gnupg24, Bug Report
ikloecker moved T7547: signatures from revoked or expired keys show up as missing keys from Backlog to WIP on the gnupg26 board.
Thu, Mar 6, 9:37 AM · gnupg26, gnupg24, Bug Report
ikloecker edited projects for T7547: signatures from revoked or expired keys show up as missing keys, added: gnupg24, gnupg26; removed gnupg.
Thu, Mar 6, 9:36 AM · gnupg26, gnupg24, Bug Report
ikloecker claimed T7547: signatures from revoked or expired keys show up as missing keys.

Thanks for the report! That's indeed a regression introduced by the changes for T7527: Keyring/keybox denial of service. Commenting/Removing line https://dev.gnupg.org/source/gnupg/browse/master/g10/getkey.c$343 seems to fix the regression, but (very likely) this would reintroduce the issues reported in T7527: Keyring/keybox denial of service.

Thu, Mar 6, 9:34 AM · gnupg26, gnupg24, Bug Report

Wed, Mar 5

dkg added a comment to T7555: gpg --batch does not block all interactivity (e.g. prompting for passwords still happens).

whether you use --pinentry-mode=loopback or --pinentry-mode=cancel or --pinentry-mode=error, if gpg-agent has cached the password already, the decryption will work; otherwise, it will fail with an error like that describe above.

Wed, Mar 5, 8:29 PM · Documentation, gnupg
dkg added a comment to T7555: gpg --batch does not block all interactivity (e.g. prompting for passwords still happens).

here's an example of no prompting at all using --pinentry-mode=loopback:

Wed, Mar 5, 8:23 PM · Documentation, gnupg
dkg created T7555: gpg --batch does not block all interactivity (e.g. prompting for passwords still happens).
Wed, Mar 5, 8:22 PM · Documentation, gnupg
dkg created T7550: master branch fails to build without `./configure --disable-ldap`.
Wed, Mar 5, 2:25 AM · gnupg

Tue, Mar 4

werner added a subtask for T7527: Keyring/keybox denial of service: T7547: signatures from revoked or expired keys show up as missing keys.
Tue, Mar 4, 10:47 AM · OpenPGP, gnupg, Bug Report