Page MenuHome GnuPG
Feed Advanced Search

Jan 23 2021

patrick added a comment to T5157: libgcrypt: ARM64 Builds on macOS fail.

I have now tried to build libgcrypt 1.9.0 for arm64 using clang. I get the following error:

Jan 23 2021, 10:52 AM · toolchain, MacOS, libgcrypt, Bug Report

Jan 22 2021

ffontaine added a comment to T5263: cipher/sha512.c: build failure without arm neon asm.

It seems that this issue has already been reported with a better fix: https://lists.gnupg.org/pipermail/gcrypt-devel/2021-January/005060.html
Feel free to close this issue.

Jan 22 2021, 10:33 PM · libgcrypt, Bug Report
ffontaine updated the task description for T5263: cipher/sha512.c: build failure without arm neon asm.
Jan 22 2021, 10:31 PM · libgcrypt, Bug Report
ffontaine updated the task description for T5263: cipher/sha512.c: build failure without arm neon asm.
Jan 22 2021, 10:19 PM · libgcrypt, Bug Report
ffontaine updated the task description for T5263: cipher/sha512.c: build failure without arm neon asm.
Jan 22 2021, 10:18 PM · libgcrypt, Bug Report
ffontaine created T5263: cipher/sha512.c: build failure without arm neon asm.
Jan 22 2021, 10:17 PM · libgcrypt, Bug Report
jpalus created T5262: pinentry qt4 fails to compile in pinentry 1.1.1.
Jan 22 2021, 9:10 PM · pinentry, Bug Report
werner added a comment to T5255: libgcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO.

Should we add this to the hints in the README? After all this does not seem to be the standard system compiler or it has not been properly setup as replacement.

Jan 22 2021, 5:47 PM · asm, libgcrypt, clang, Bug Report
jukivili added a comment to T5255: libgcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO.

Problem was that my build system was selecting "ar" and "ranlib", where as your build system selects "llvm-ar" and "llvm-ranlib".

Jan 22 2021, 5:33 PM · asm, libgcrypt, clang, Bug Report

Jan 21 2021

telans added a comment to T5255: libgcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO.

Unfortunately these are not enough to enable building with clang LTO. Build now fails when linking test executables (libgcrypt.so gets build however):

Any ideas what might be causing this?

Jan 21 2021, 9:47 PM · asm, libgcrypt, clang, Bug Report
jukivili added a comment to T5255: libgcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO.

Configure output has still has some differences LTO vs non-LTO:

--- non-lto.log 2021-01-21 22:25:14.966099577 +0200
+++ lto.log     2021-01-21 22:25:23.174086100 +0200
@@ -63,7 +63,7 @@
 checking for archiver @FILE support... @
 checking for strip... strip
 checking for ranlib... ranlib
-checking command to parse /usr/bin/nm -B output from clang object... ok
+checking command to parse /usr/bin/nm -B output from clang object... failed
 checking for sysroot... no
 checking for mt... mt
 checking if mt is a manifest tool... no
@@ -75,7 +75,7 @@
 checking if clang static flag -static works... yes
 checking if clang supports -c -o file.o... yes
 checking if clang supports -c -o file.o... (cached) yes
-checking whether the clang linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
+checking whether the clang linker (/usr/bin/ld) supports shared libraries... yes
 checking whether -lc should be explicitly linked in... no
 checking dynamic linker characteristics... GNU/Linux ld.so
 checking how to hardcode library paths into programs... immediate
@@ -168,8 +168,8 @@
 checking whether 'asm' assembler keyword is supported... yes
 checking whether '__asm__' assembler keyword is supported... yes
 checking whether inline assembly memory barrier is supported... yes
-checking whether GCC assembler is compatible for ARM assembly implementations... no
-checking whether GCC assembler is compatible for ARMv8/Aarch64 assembly implementations... no
+checking whether GCC assembler is compatible for ARM assembly implementations... yes
+checking whether GCC assembler is compatible for ARMv8/Aarch64 assembly implementations... yes
 checking whether GCC assembler supports for CFI directives... yes
 checking whether GCC assembler supports for ELF directives... yes
 checking for _ prefix in compiled symbols... no
@@ -240,7 +240,7 @@
 checking if gcc supports -Wno-missing-field-initializers... yes
 checking if gcc supports -Wpointer-arith... yes
 checking whether non excutable stack support is requested... yes
-checking whether assembler supports --noexecstack option... yes
+checking whether assembler supports --noexecstack option... no
 checking that generated files are newer than configure... done
 configure: creating ./config.status
 config.status: creating Makefile
Jan 21 2021, 9:27 PM · asm, libgcrypt, clang, Bug Report
jukivili added a comment to T5255: libgcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO.

Clang support Intel syntax after all, but not assembler macros that were used. Here's two patches that fix the configure.ac issue and removes use of assembly macros in Intel syntax assembly files:

Jan 21 2021, 9:23 PM · asm, libgcrypt, clang, Bug Report
werner changed the status of T5257: 32 bit cross build fails on asm code in gcrypt 1.9.0 from Open to Testing.
Jan 21 2021, 10:32 AM · Bug Report, Cross-Compiler, libgcrypt

Jan 20 2021

balducci added a comment to T5257: 32 bit cross build fails on asm code in gcrypt 1.9.0.

You probably define CFLAGS=-m32 in your installation script for 32-bit build. I'd try with CFLAGS="-O2 -m32".

Jan 20 2021, 7:03 PM · Bug Report, Cross-Compiler, libgcrypt
jukivili added a comment to T5257: 32 bit cross build fails on asm code in gcrypt 1.9.0.

Jan 20 2021, 4:16 PM · Bug Report, Cross-Compiler, libgcrypt
jukivili added a comment to T5257: 32 bit cross build fails on asm code in gcrypt 1.9.0.

Thanks for report. I reproduced this by building i386 with optimizations disabled "-O0" (gcc 10). With normal optimization level such as "-O2", the issue does not appear.

Jan 20 2021, 3:47 PM · Bug Report, Cross-Compiler, libgcrypt
werner added a comment to T5254: libgcrypt 1.9.0 fails make check (selftest).

Sure. Thanks for testing. The problem with new versions is that ppl don't like to test release candidates and thus we need do real releases and wait for the outfall. ;-)

Jan 20 2021, 2:43 PM · patch, libgcrypt, Bug Report
werner merged T5258: KeePassXC fails to start after upgrade to libgcrypt 1.9.0 into T5254: libgcrypt 1.9.0 fails make check (selftest).
Jan 20 2021, 2:42 PM · patch, libgcrypt, Bug Report
werner merged task T5258: KeePassXC fails to start after upgrade to libgcrypt 1.9.0 into T5254: libgcrypt 1.9.0 fails make check (selftest).
Jan 20 2021, 2:42 PM · libgcrypt, Bug Report
jpalus created T5258: KeePassXC fails to start after upgrade to libgcrypt 1.9.0.
Jan 20 2021, 2:30 PM · libgcrypt, Bug Report
werner created T5257: 32 bit cross build fails on asm code in gcrypt 1.9.0.
Jan 20 2021, 1:30 PM · Bug Report, Cross-Compiler, libgcrypt
jukivili removed a subtask for T5251: Compile error on ARMv7 for libgcrypt : T5256: libgcrypt, convert Intel syntax x86_64 assembly files to AT&T syntax.
Jan 20 2021, 1:24 PM · asm, libgcrypt, Bug Report
jukivili added a subtask for T5255: libgcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO: T5256: libgcrypt, convert Intel syntax x86_64 assembly files to AT&T syntax.
Jan 20 2021, 1:24 PM · asm, libgcrypt, clang, Bug Report
jukivili added a subtask for T5251: Compile error on ARMv7 for libgcrypt : T5256: libgcrypt, convert Intel syntax x86_64 assembly files to AT&T syntax.
Jan 20 2021, 1:22 PM · asm, libgcrypt, Bug Report
jukivili added a comment to T5255: libgcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO.

Breakage appears to happen in configure.ac. When building with clang without LTO following check gives "no":

Jan 20 2021, 1:14 PM · asm, libgcrypt, clang, Bug Report
outer added a comment to T5254: libgcrypt 1.9.0 fails make check (selftest).

Fixed by jukvilli’s patch.
__outer

Jan 20 2021, 10:19 AM · patch, libgcrypt, Bug Report
outer added a comment to T5254: libgcrypt 1.9.0 fails make check (selftest).

That works, thanks. So does that become part of the next release?
__outer

Jan 20 2021, 10:14 AM · patch, libgcrypt, Bug Report
telans added a comment to T5255: libgcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO.

Both are affected. I updated to reflect that I tested the newer version

Jan 20 2021, 9:39 AM · asm, libgcrypt, clang, Bug Report
werner triaged T5254: libgcrypt 1.9.0 fails make check (selftest) as High priority.
Jan 20 2021, 9:34 AM · patch, libgcrypt, Bug Report
werner triaged T5255: libgcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO as Normal priority.
Jan 20 2021, 9:33 AM · asm, libgcrypt, clang, Bug Report
werner triaged T5253: expiration changes during interactive expire date verification as Low priority.

Thanks for the reports. IIRC, we had similar reports in the past either here or on a ML.

Jan 20 2021, 9:32 AM · gnupg24, gnupg (gpg23), Bug Report
werner triaged T5252: bad expiration value when using --batch Creation-Date/Expire-Date as Low priority.
Jan 20 2021, 9:29 AM · gnupg, Bug Report
werner triaged T5251: Compile error on ARMv7 for libgcrypt as Normal priority.
Jan 20 2021, 9:28 AM · asm, libgcrypt, Bug Report
werner added a comment to T5251: Compile error on ARMv7 for libgcrypt .

FWIW, after the release I had some time and after some trouble with my Pi4B I ran into the same problem.

Jan 20 2021, 9:23 AM · asm, libgcrypt, Bug Report
werner updated the task description for T5251: Compile error on ARMv7 for libgcrypt .
Jan 20 2021, 9:22 AM · asm, libgcrypt, Bug Report
werner added a comment to T5255: libgcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO.

So is this about 1.8.7 or 1.9.0 (as shown in the Version field)?

Jan 20 2021, 9:21 AM · asm, libgcrypt, clang, Bug Report
patrick added a comment to T5250: macOS: gpgconf SIGSEGV when run via gpgme from the GUI application.

In fact, Thunderbird does not use gpgme-json, but loads the gpgme shared library at runtime. The interesting thing is that Thunderbird works fine if gpgOSX is used.

Jan 20 2021, 7:41 AM · gpgme, MacOS, Bug Report

Jan 19 2021

jukivili added a comment to T5255: libgcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO.

Yes, clang + LTO is broken. Maybe there is issue in clang bug tracker for this already?

Jan 19 2021, 11:08 PM · asm, libgcrypt, clang, Bug Report
jukivili added a comment to T5254: libgcrypt 1.9.0 fails make check (selftest).

Maybe this patch helps:

Jan 19 2021, 11:05 PM · patch, libgcrypt, Bug Report
telans changed Version from 1.8.7 to 1.9.0 on T5255: libgcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO.
Jan 19 2021, 9:21 PM · asm, libgcrypt, clang, Bug Report
telans renamed T5255: libgcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO from ligcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO to libgcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO.
Jan 19 2021, 9:16 PM · asm, libgcrypt, clang, Bug Report
telans created T5255: libgcrypt: build "error: invalid operand for instruction" when compiling with Clang & LTO.
Jan 19 2021, 9:16 PM · asm, libgcrypt, clang, Bug Report
outer created T5254: libgcrypt 1.9.0 fails make check (selftest).
Jan 19 2021, 9:13 PM · patch, libgcrypt, Bug Report
becm added a comment to T5253: expiration changes during interactive expire date verification.

Similar to T5252, likely requiring the concept of some kind of "fixed reference date".

Jan 19 2021, 8:31 PM · gnupg24, gnupg (gpg23), Bug Report
becm created T5253: expiration changes during interactive expire date verification.
Jan 19 2021, 8:25 PM · gnupg24, gnupg (gpg23), Bug Report
becm created T5252: bad expiration value when using --batch Creation-Date/Expire-Date.
Jan 19 2021, 7:59 PM · gnupg, Bug Report
zerbey added a comment to T5251: Compile error on ARMv7 for libgcrypt .

Confirmed working after applying your patch!

Jan 19 2021, 7:55 PM · asm, libgcrypt, Bug Report
gouttegd closed T4927: pinentry doesn't compile: declaration of ttytype conflicts with curses.h as Resolved.

The fix will be part of the upcoming pinentry-1.1.1.

Jan 19 2021, 7:53 PM · pinentry, Bug Report
jukivili added a comment to T5251: Compile error on ARMv7 for libgcrypt .

Thanks for you report.

Jan 19 2021, 7:53 PM · asm, libgcrypt, Bug Report
gouttegd closed T4583: pinentry-tty should accept backspace, delete, and ctrl-U as Resolved.

@gniibe I assume this issue has been fixed by the same fix as for T4585 and can be closed as well. Feel free to re-open if I am wrong.

Jan 19 2021, 7:48 PM · pinentry, Restricted Project, Bug Report
zerbey added a project to T5251: Compile error on ARMv7 for libgcrypt : libgcrypt.
Jan 19 2021, 7:00 PM · asm, libgcrypt, Bug Report
zerbey created T5251: Compile error on ARMv7 for libgcrypt .
Jan 19 2021, 6:55 PM · asm, libgcrypt, Bug Report
werner added a comment to T5250: macOS: gpgconf SIGSEGV when run via gpgme from the GUI application.

Reading the bugzilla report it seems that TB is loading gpgme at runtime. In particular the hints on using externally build stuff (Homebrew) is worrying. Someone(tm) needs to check how gpgme is used by TB and that it is properly initialized. GPGME is actually not designed to be loaded at runtime but should be used as standard shared object or static library.

Jan 19 2021, 5:40 PM · gpgme, MacOS, Bug Report
onickolay added a comment to T5250: macOS: gpgconf SIGSEGV when run via gpgme from the GUI application.

Thanks for the reply. Not sure about GPGME/gpgme-json. Anyway, it still ends up in gpgme code, isn't it?
I used to modify gpgme sources to receive more information about the issue.
Looks like the next step would be to modify gpg-conf and see what's going on there, or leave it to the Thunderbird developers.

Jan 19 2021, 4:54 PM · gpgme, MacOS, Bug Report
werner triaged T5250: macOS: gpgconf SIGSEGV when run via gpgme from the GUI application as Low priority.

Sure that TB uses GPGME - they claimed they won't use it due to license incompatibility (LGPL). I assumed they use gpgme-json via naticve messaging. Regarding the error - I have no idea.

Jan 19 2021, 4:45 PM · gpgme, MacOS, Bug Report
werner closed T4294: Release Libgcrypt 1.9.0, a subtask of T4243: Test failure in libgcrypt-1.8.4, as Resolved.
Jan 19 2021, 1:54 PM · Documentation, Tests, libgcrypt, Bug Report
werner closed T4294: Release Libgcrypt 1.9.0, a subtask of T4274: Fail selftests when checksum file is missing in FIPS mode only, as Resolved.
Jan 19 2021, 1:54 PM · Restricted Project, libgcrypt, Bug Report
onickolay created T5250: macOS: gpgconf SIGSEGV when run via gpgme from the GUI application.
Jan 19 2021, 12:36 PM · gpgme, MacOS, Bug Report
aheinecke closed T4571: Outlook sometimes crashes when activating encrypted mail with (partial) non-encrypted appendix as Resolved.

Thanks for the feedback

Jan 19 2021, 11:39 AM · gpgol, Bug Report, gpg4win
JJworx added a comment to T4571: Outlook sometimes crashes when activating encrypted mail with (partial) non-encrypted appendix.

Ok, I found the message and tried some opening and clicking around w/o any crashes. But back then I also couldn't reproduce it. Please close the issue. I'll ask for reopening if I ever come across it once more. Thanks for your good work!

Jan 19 2021, 11:00 AM · gpgol, Bug Report, gpg4win
gniibe closed T4585: pinentry-tty mishandles ctrl-C as Resolved.

For a bug which requires more tests (like this one with GnuPG and pinentry), I had a practice to put "Testing" tag.

Jan 19 2021, 3:01 AM · Restricted Project, Bug Report

Jan 18 2021

gouttegd added a comment to T4585: pinentry-tty mishandles ctrl-C.

Any news about this bug? It has been in “Testing” for quite a while now. For what it’s worth, handling of ^C seems to work here as I would expect, so I am inclined to close here and let pinentry-1.1.1 go out. @gniibe, as you did the fix, do you have any comment?

Jan 18 2021, 9:02 PM · Restricted Project, Bug Report
werner moved T5195: Incorrect HWCAP2 check for AArch32 from For 1.9 to For 1.8 on the libgcrypt board.
Jan 18 2021, 7:08 PM · libgcrypt, backport, Bug Report
werner added a project to T5195: Incorrect HWCAP2 check for AArch32: libgcrypt.
Jan 18 2021, 7:08 PM · libgcrypt, backport, Bug Report
werner removed a project from T5195: Incorrect HWCAP2 check for AArch32: libgcrypt.
Jan 18 2021, 7:07 PM · libgcrypt, backport, Bug Report
werner added a project to T5195: Incorrect HWCAP2 check for AArch32: backport.
Jan 18 2021, 7:06 PM · libgcrypt, backport, Bug Report
aheinecke triaged T5246: Kleopatra: Failing at certifying key as Normal priority.

I set it to Normal priority. It would be good to find out what exactly is the problem with this key so that we can fix this in kleopatra and handle it.

Jan 18 2021, 4:07 PM · kleopatra, Bug Report, gpg4win
aheinecke added a comment to T5246: Kleopatra: Failing at certifying key.

The about dialog where it tells unknown windows version means it's Gpg4win-3.1.13 (the only version affected by T5056 )

Jan 18 2021, 4:06 PM · kleopatra, Bug Report, gpg4win
Chris1991 added a comment to T5246: Kleopatra: Failing at certifying key.

It's version 2

Jan 18 2021, 3:30 PM · kleopatra, Bug Report, gpg4win
Chris1991 added a comment to T5246: Kleopatra: Failing at certifying key.
Jan 18 2021, 3:29 PM · kleopatra, Bug Report, gpg4win
werner added a project to T5246: Kleopatra: Failing at certifying key: kleopatra.

Please let us know your gpg4win version.

Jan 18 2021, 2:52 PM · kleopatra, Bug Report, gpg4win
Chris1991 created T5246: Kleopatra: Failing at certifying key.
Jan 18 2021, 2:13 PM · kleopatra, Bug Report, gpg4win

Jan 14 2021

msc added a comment to T4241: GpgOL: Unable to save an encrypted message over the microsoft outlook interface.

I am getting the initial exception again:

Jan 14 2021, 12:08 PM · Bug Report, gpg4win

Jan 12 2021

JJworx added a comment to T4571: Outlook sometimes crashes when activating encrypted mail with (partial) non-encrypted appendix.

That would mean I could remember the exact problem. Can you extract the mail name from my logs? I should still have it...

Jan 12 2021, 5:40 PM · gpgol, Bug Report, gpg4win
werner added a comment to T4818: libgcrypt build failures on several platforms.

Note: The commit in master (1.9) is rCe0898d0628789414
and in 1.8 it is rC03e6d6597198ee

Jan 12 2021, 12:40 PM · Solaris, libgcrypt, Bug Report
werner added a comment to T4833: libgcrypt: bug in _gcry_poly1305_armv7_neon_init_ext.

The commit which fixes this is rC761a1a0d30

Jan 12 2021, 12:29 PM · libgcrypt, Bug Report

Jan 11 2021

aheinecke closed T4525: GpgOL: Error when moving opened S/MIME Mails with attachments on Exchange as Resolved.

This works with the message class changing. We still need to do it for OpenPGP, too.

Jan 11 2021, 9:29 AM · g10code, gpg4win, Bug Report, gpgol

Jan 8 2021

werner closed T5167: GnuPG 2.25 still have problems related to Yubikey NEO. as Resolved.
Jan 8 2021, 9:58 AM · gnupg (gpg22), yubikey, ssh, scd, Bug Report
werner closed T4447: Fix addition of new GPG keys to LDAP as Resolved.

The code has been reworked to also support the updated schema which also stores the fingerprints and a parsed down mail address. See gnupg/doc/ldap/ . These changes are in master and 2.2.26. Sorry for taking so long to fix that.

Jan 8 2021, 9:56 AM · gnupg (gpg23), patch, LDAP, dirmngr, Bug Report

Jan 7 2021

jukivili added a comment to T5195: Incorrect HWCAP2 check for AArch32.

Yes, bug is also in 1.8 branch.

Jan 7 2021, 11:00 PM · libgcrypt, backport, Bug Report
jgentil added a comment to T5084: Using GPGWin 3.1.13, Putty fails to load the private key from a YubiKey.

I'm also getting this same error with GPG4Win 3.1.14.

Jan 7 2021, 4:10 PM · gnupg, ssh, Bug Report, gpg4win
werner moved T5195: Incorrect HWCAP2 check for AArch32 from Backlog to For 1.9 on the libgcrypt board.
Jan 7 2021, 11:42 AM · libgcrypt, backport, Bug Report
werner added a comment to T5195: Incorrect HWCAP2 check for AArch32.

Do we need to backport to 1.8?

Jan 7 2021, 11:42 AM · libgcrypt, backport, Bug Report
werner closed T4304: gcry_control (GCRYCTL_INIT_SECMEM, 16384, 0) failed: General error as Wontfix.
Jan 7 2021, 11:02 AM · Legacy OS, Fedora, libgcrypt, Bug Report
werner closed T4274: Fail selftests when checksum file is missing in FIPS mode only as Resolved.
Jan 7 2021, 10:52 AM · Restricted Project, libgcrypt, Bug Report
werner closed T3220: Missing curve documentation as Resolved.

Thanks. I added the OIDs and the missing curves. To go into 1.9

Jan 7 2021, 9:54 AM · patch, libgcrypt, Bug Report

Jan 6 2021

cbiedl added a comment to T5215: gnugp1: Fix build errors with gcc-10.

Okay. Now since configure.ac is already touching CFLAGS, it seemed like a good place to add that additional option here. All this is guarded by a test for GCC, and since clang mimics that behaviour, it works for them as well.

Jan 6 2021, 5:42 PM · gnupg (gpg14), patch, Bug Report
werner added a comment to T5215: gnugp1: Fix build errors with gcc-10.

Take care: gpg is also used on platforms with proprietary compilers which don't support -f options. Thus you need to limit this to gcc.

Jan 6 2021, 4:03 PM · gnupg (gpg14), patch, Bug Report
cbiedl added a comment to T5215: gnugp1: Fix build errors with gcc-10.

After some more checking: LLVM-11 introduced the same behaviour in that regard, but appearently not a pragma/attribute to override this: https://releases.llvm.org/11.0.0/tools/clang/docs/ReleaseNotes.html

Jan 6 2021, 3:55 PM · gnupg (gpg14), patch, Bug Report
aheinecke changed the status of T4184: Outlook 2013 Appointments vanish when send as a E-Mail from Open to Testing.

This works now with 0c1bd9076958e584820fadf997ca7d8a248b6888 but needs more testing before this can be relased. It will probably be part of a Gpg4win-4 beta.

Jan 6 2021, 10:29 AM · gpgol, Bug Report, gpg4win

Jan 5 2021

werner lowered the priority of T4571: Outlook sometimes crashes when activating encrypted mail with (partial) non-encrypted appendix from High to Low.

I'd suggest to first try the current version to see whether the bug has been solved.

Jan 5 2021, 10:56 AM · gpgol, Bug Report, gpg4win
werner triaged T4992: ssh Yubikey not recognized, but Yubikey works with GPG well as Normal priority.
Jan 5 2021, 9:35 AM · ssh, yubikey, Bug Report, gpg4win
werner triaged T4892: gpgsm --gen-key with existing key from "ssh-add" fails as Normal priority.
Jan 5 2021, 9:33 AM · gnupg24, Bug Report, S/MIME
werner closed T5107: GPA Importing encrypted files and Public keys as Invalid.
Jan 5 2021, 9:25 AM · No Response, Windows, gpa, Bug Report
werner triaged T5124: Kleopatra GUI Not Working as Normal priority.

Please try gpg4win 3.1.14 and check whether your problem has gone.

Jan 5 2021, 9:20 AM · kleopatra, Info Needed, gpgol, Bug Report
werner triaged T5152: PGP/MIME e-mails are not decrypted as Normal priority.
Jan 5 2021, 9:19 AM · Support, gpgol, Bug Report
werner triaged T5157: libgcrypt: ARM64 Builds on macOS fail as Normal priority.
Jan 5 2021, 9:18 AM · toolchain, MacOS, libgcrypt, Bug Report
werner assigned T5165: GpgOL plugin attachments showup intermittently to aheinecke.
Jan 5 2021, 9:17 AM · gpgol, Bug Report, gpg4win
werner triaged T5172: GPA crashes in the pubkey preferences "use advanced mode" switching as Normal priority.
Jan 5 2021, 9:16 AM · gpa, Bug Report, gpg4win
werner triaged T5195: Incorrect HWCAP2 check for AArch32 as Normal priority.
Jan 5 2021, 9:12 AM · libgcrypt, backport, Bug Report