Page MenuHome GnuPG
Feed Advanced Search

Apr 5 2016

justus added a comment to T2087: Issue with "make check" on gnupg-2.1.7 : In version.test gpg-agent doesn't start.

Hi,

please re-run the failing command ("... gpg-connect-agent ...") under strace -f
to see what actually fails. I suspect that the gpg-agent is not found (did you
do make install?).

(The command complained about the missing /root/.gnupg because the test suite
sets $GNUPGHOME and you did not. Also: please don't compile software as root.)

Apr 5 2016, 2:33 PM · Bug Report, gnupg
justus claimed T2087: Issue with "make check" on gnupg-2.1.7 : In version.test gpg-agent doesn't start.
Apr 5 2016, 2:33 PM · Bug Report, gnupg
justus added a comment to T1799: GnuPG does not provide Host: header for proxy requests.

This is no longer an issue with gnupg master:

% socat - tcp-listen:11371
GET /pks/lookup?op=index&options=mr&search=foobr HTTP/1.0
Host: localhost:11371
Connection: close
Via: 1.0 tinyproxy (tinyproxy/1.8.3)
Pragma: no-cache
Cache-Control: no-cache

Feel free to reopen with more specific information.

Apr 5 2016, 2:17 PM · Bug Report, gnupg
justus removed a project from T1799: GnuPG does not provide Host: header for proxy requests: Info Needed.
Apr 5 2016, 2:17 PM · Bug Report, gnupg
justus closed T1799: GnuPG does not provide Host: header for proxy requests as Resolved.
Apr 5 2016, 2:17 PM · Bug Report, gnupg
justus claimed T1799: GnuPG does not provide Host: header for proxy requests.
Apr 5 2016, 2:17 PM · Bug Report, gnupg
aheinecke updated subscribers of T2306: Rare smartcard errors with gnupg master.
Apr 5 2016, 12:52 PM · Bug Report, gnupg, scd
aheinecke set Version to master on T2306: Rare smartcard errors with gnupg master.
Apr 5 2016, 12:52 PM · Bug Report, gnupg, scd
aheinecke added projects to T2306: Rare smartcard errors with gnupg master: scd, gnupg, Bug Report.
Apr 5 2016, 12:52 PM · Bug Report, gnupg, scd
justus added a comment to T1342: gpgconf --check-programs and uninitialized gpgsm configuration.

As far as I can tell this is a feature and not a bug. gpgconf reads stderr and
writes that to the eighth column.

Apr 5 2016, 12:15 PM · Bug Report, gnupg
justus closed T1342: gpgconf --check-programs and uninitialized gpgsm configuration as Resolved.
Apr 5 2016, 12:15 PM · Bug Report, gnupg
justus closed T1379: DNS back-end reports "gpg: keyserver internal error" as Resolved.
Apr 5 2016, 11:58 AM · Bug Report, gnupg
justus added a comment to T1379: DNS back-end reports "gpg: keyserver internal error".

I cannot reproduce this with current master. Feel free to reopen this bug if
you manage to reproduce it.

Apr 5 2016, 11:58 AM · Bug Report, gnupg

Apr 4 2016

justus added a comment to T2303: Can't pass the make check.

Sorry, that second log does not show anything new. I'm attaching a verbose log
for reference that I obtained the way I described using the version you used.
For me all tests pass, so unless we get more information on the failures it is
impossible to tell what's going on.

Apr 4 2016, 12:35 PM · gnupg, Bug Report
justus added a comment to T2303: Can't pass the make check.

Apr 4 2016, 12:35 PM · gnupg, Bug Report

Apr 3 2016

abg added projects to T2305: File https://gnupg.org/ftp/gcrypt/binary/index.html needs update: gpgweb, Bug Report.
Apr 3 2016, 3:43 PM · Bug Report, gpgweb
manofphysics added a comment to T2303: Can't pass the make check.

Apr 3 2016, 9:41 AM · gnupg, Bug Report
manofphysics added a comment to T2303: Can't pass the make check.

hi, this is my new test log, my cmd is
$ make -C tests/openpgp check verbose=2

Apr 3 2016, 9:41 AM · gnupg, Bug Report

Apr 2 2016

dylanetaft added a comment to T2304: Buffer Overrun in GPGME encrypt-sign.c:168?.

It wasn't apparent to me until I looked at tests/gpg/t-encrypt.c that
gpgme_op_encrypt_sign expects an array of keys for the second parameter. It worked
when my code was straight C with a pointer to just a single key. In C++ I started
getting segfaults so I switched to an array.

gpgme_key_t keys[1] = {NULL};
gpgErr = gpgme_get_key(gpgCtx,to.c_str(),&keys[0],0);
It still segfaulted, further review, I THINK the array of keys needs to have one
blank key at the end else it may result in a buffer overrun in GPGME? Shouldn't
sizeof be used to determine the length of the array or something similar? Otherwise
the array would have to be at least 2 elements with the last element not a key so
the GPGME doesn't seg.

Process 12727 stopped

  • thread #1: tid = 0x864b5, 0x00000001000107ea

libgpgme.11.dylib`gpgme_op_encrypt_sign(ctx=0x0000000100200850,
recp=0x00007fff5fbffa50, flags=GPGME_ENCRYPT_NO_ENCRYPT_TO,
plain=0x0000000100201000, cipher=0x0000000100200dc0) + 474 at encrypt-sign.c:168,
queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS (code=EXC_I386_GPFLT)

frame #0: 0x00000001000107ea

libgpgme.11.dylib`gpgme_op_encrypt_sign(ctx=0x0000000100200850,
recp=0x00007fff5fbffa50, flags=GPGME_ENCRYPT_NO_ENCRYPT_TO,
plain=0x0000000100201000, cipher=0x0000000100200dc0) + 474 at encrypt-sign.c:168

165 	
166 	      while (recp[i])
167 		{

-> 168 TRACE_LOG3 ("recipient[%i] = %p (%s)", i, recp[i],

169 			      (recp[i]->subkeys && recp[i]->subkeys->fpr) ?
170 			      recp[i]->subkeys->fpr : "invalid");
171 		  i++;

(lldb) bt

  • thread #1: tid = 0x864b5, 0x00000001000107ea

libgpgme.11.dylib`gpgme_op_encrypt_sign(ctx=0x0000000100200850,
recp=0x00007fff5fbffa50, flags=GPGME_ENCRYPT_NO_ENCRYPT_TO,
plain=0x0000000100201000, cipher=0x0000000100200dc0) + 474 at encrypt-sign.c:168,
queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS (code=EXC_I386_GPFLT)

  • frame #0: 0x00000001000107ea

libgpgme.11.dylib`gpgme_op_encrypt_sign(ctx=0x0000000100200850,
recp=0x00007fff5fbffa50, flags=GPGME_ENCRYPT_NO_ENCRYPT_TO,
plain=0x0000000100201000, cipher=0x0000000100200dc0) + 474 at encrypt-sign.c:168

frame #1: 0x0000000100000b76

pgtalk`GPGWrapper::encryptAndSign(this=0x00007fff5fbffb30, message="This is a
test\n", to="044E9E1D78D510E4C798D3B803254F162CFF2601") + 166 at GPGWrapper.cpp:32

frame #2: 0x00000001000019c6 pgtalk`main(argc=1, argv=0x00007fff5fbffc38) + 486

at pgtalk.cpp:13

frame #3: 0x00007fff910ad5ad libdyld.dylib`start + 1
frame #4: 0x00007fff910ad5ad libdyld.dylib`start + 1

(lldb) quit

Apr 2 2016, 9:41 PM · gpgme, Not A Bug, Bug Report
dylanetaft added a project to T2304: Buffer Overrun in GPGME encrypt-sign.c:168?: Bug Report.
Apr 2 2016, 9:41 PM · gpgme, Not A Bug, Bug Report
dylanetaft set Version to 1.6.0 on T2304: Buffer Overrun in GPGME encrypt-sign.c:168?.
Apr 2 2016, 9:41 PM · gpgme, Not A Bug, Bug Report

Apr 1 2016

justus claimed T1767: Missing file in GnuPG Smartcard HOWTO.
Apr 1 2016, 5:42 PM · Bug Report, gpgweb
justus closed T1767: Missing file in GnuPG Smartcard HOWTO as Resolved.
Apr 1 2016, 5:42 PM · Bug Report, gpgweb
justus added a comment to T1767: Missing file in GnuPG Smartcard HOWTO.

Fixed in 81797af.

Apr 1 2016, 5:42 PM · Bug Report, gpgweb
werner added a comment to T2303: Can't pass the make check.

(Sorry about the question about the OS - my fault)

Apr 1 2016, 4:59 PM · gnupg, Bug Report
werner added a project to T2303: Can't pass the make check: gnupg.
Apr 1 2016, 4:57 PM · gnupg, Bug Report
werner added a comment to T2303: Can't pass the make check.

Please also tell us what OS you are using.
Are you running in FIPS mode?
The output of "gpg --version" would also be helpful.

Apr 1 2016, 4:57 PM · gnupg, Bug Report
justus added a comment to T2239: Misleading German translation when editing keys with designated revoker keys.

Fixed in 42d4c276. Thanks!

Apr 1 2016, 4:44 PM · Bug Report, gnupg, i18n
justus closed T2239: Misleading German translation when editing keys with designated revoker keys as Resolved.
Apr 1 2016, 4:44 PM · Bug Report, gnupg, i18n
justus added a comment to T2301: Commenting on Issue 1983.

I approved you as a user, if you still cannot comment on the bug, please ping me
again.

Apr 1 2016, 4:01 PM · Bug Report, gnupg
justus closed T2301: Commenting on Issue 1983 as Resolved.
Apr 1 2016, 4:01 PM · Bug Report, gnupg
justus claimed T2303: Can't pass the make check.
Apr 1 2016, 3:57 PM · gnupg, Bug Report
justus added a comment to T2303: Can't pass the make check.

Hello,

can you please run

$ make -C tests/openpgp check verbose=2

and attach the output?

Apr 1 2016, 3:57 PM · gnupg, Bug Report
ninveh lowered the priority of T2302: Output Corruption of large files during symmetrical encryption from Unbreak Now! to Normal.
Apr 1 2016, 10:36 AM · gpg4win
ninveh closed T2302: Output Corruption of large files during symmetrical encryption as Invalid.
Apr 1 2016, 10:36 AM · gpg4win

Mar 31 2016

sa added a project to T1967: GnuPG should select a key for signing without trying to use missing subkeys: Bug Report.
Mar 31 2016, 11:44 PM · gnupg (gpg22), Feature Request
manofphysics added a project to T2303: Can't pass the make check: Bug Report.
Mar 31 2016, 3:15 PM · gnupg, Bug Report
manofphysics added a comment to T2303: Can't pass the make check.

Mar 31 2016, 3:15 PM · gnupg, Bug Report
ninveh added projects to T2302: Output Corruption of large files during symmetrical encryption: gpg4win, Bug Report.
Mar 31 2016, 1:39 PM · gpg4win
ninveh set Version to 2.2.6 on T2302: Output Corruption of large files during symmetrical encryption.
Mar 31 2016, 1:39 PM · gpg4win
decomposite set Version to 2.1.4 on T2301: Commenting on Issue 1983.
Mar 31 2016, 1:32 PM · Bug Report, gnupg
decomposite added projects to T2301: Commenting on Issue 1983: gnupg, Bug Report.
Mar 31 2016, 1:32 PM · Bug Report, gnupg
aheinecke added projects to T2300: Second crlDP is not used if first is unavailable: dirmngr, Bug Report.
Mar 31 2016, 11:20 AM · g10code, Feature Request, dirmngr

Mar 30 2016

dkg added a project to T1983: gpg2 prefers missing secret key to available key on card: Bug Report.
Mar 30 2016, 9:19 PM · Bug Report, gnupg
dkg reopened T1983: gpg2 prefers missing secret key to available key on card as "Open".
Mar 30 2016, 9:19 PM · Bug Report, gnupg
sarathingpg added a comment to T2286: gpg-agent not working on AIX 6.1 TL09.

Werner,

Thanks a lot. I will try to apply the patch.
Can you please let us know if your company is offering enterprise level
support.

Thanks
Sandeep

Mar 30 2016, 1:55 AM · gnupg, Bug Report

Mar 29 2016

languitar added a project to T2298: Unblocking a smartcard PIN not possible in 2.1: Bug Report.
Mar 29 2016, 4:42 PM · Info Needed, gnupg, scd, Bug Report
werner added a comment to T2223: libgcrypt-1.6.4: benchmark and keygen test failed due to segfault.

Can you please enter the command "where" in dbx after the fault?

Mar 29 2016, 2:03 PM · Info Needed, Bug Report, libgcrypt
werner added a project to T2056: libgcrypt: make check fails "random" test on OS X 10.11 with link error: Too Old.
Mar 29 2016, 1:50 PM · Stalled, MacOS, Bug Report, libgcrypt
werner added a comment to T2056: libgcrypt: make check fails "random" test on OS X 10.11 with link error.

No updates in 8 months, thus closing.

Mar 29 2016, 1:50 PM · Stalled, MacOS, Bug Report, libgcrypt
werner closed T2056: libgcrypt: make check fails "random" test on OS X 10.11 with link error as Resolved.
Mar 29 2016, 1:50 PM · Stalled, MacOS, Bug Report, libgcrypt
werner added a project to T2242: Crash in libgcrypt from gnome-keyring in AES cipher in ARM assembler: Restricted Project.
Mar 29 2016, 1:48 PM · Bug Report, libgcrypt
werner closed T2292: cipher/crc-intel-pclmul.c: load of misaligned address as Resolved.
Mar 29 2016, 1:46 PM · Not A Bug, Bug Report, Assembler, libgcrypt
werner added a project to T2292: cipher/crc-intel-pclmul.c: load of misaligned address: Not A Bug.
Mar 29 2016, 1:46 PM · Not A Bug, Bug Report, Assembler, libgcrypt
werner added a comment to T2292: cipher/crc-intel-pclmul.c: load of misaligned address.

Thus clang is wrong here because it prints an "error" and not something like a
"performance hint". I close this bug.

Mar 29 2016, 1:46 PM · Not A Bug, Bug Report, Assembler, libgcrypt
werner added a comment to T2288: --quiet option produces logging output.

Fixed on 2016-03-19 with commmit af9a4afb. Note that --quiet shall not suppress
all output.

(The commit you gave is wrong).

Mar 29 2016, 1:39 PM · Bug Report, gnupg, gnupg (gpg21)
werner added a project to T2288: --quiet option produces logging output: Restricted Project.
Mar 29 2016, 1:39 PM · Bug Report, gnupg, gnupg (gpg21)
werner added a comment to T2294: missing key for symbolic link tofu.d/email/*/file.db lead to segfaul.

Thanks for the report. Probably fixed with commit e2c5781.

Mar 29 2016, 1:31 PM · gnupg, Bug Report
werner added a project to T2294: missing key for symbolic link tofu.d/email/*/file.db lead to segfaul: Restricted Project.
Mar 29 2016, 1:31 PM · gnupg, Bug Report
werner added a project to T2294: missing key for symbolic link tofu.d/email/*/file.db lead to segfaul: gnupg.
Mar 29 2016, 1:26 PM · gnupg, Bug Report
werner added a project to T2297: Refresh keys fails for whole (large) keyring since GnuPG 2.0.27+ (gpg4win only): gpg4win.
Mar 29 2016, 1:25 PM · gnupg, Bug Report
werner added a project to T2296: gpg4win -- Kleopatra doesn't work on Windows 7, 64bit: gpg4win.
Mar 29 2016, 1:23 PM · gpg4win, Bug Report
werner lowered the priority of T2296: gpg4win -- Kleopatra doesn't work on Windows 7, 64bit from High to Normal.
Mar 29 2016, 1:23 PM · gpg4win, Bug Report
werner added a comment to T2295: Provide 64-bit gpgol.dll for new 64-bit versions of Office.

Actually we are working on a 64 bit version.

Mar 29 2016, 1:22 PM · Windows 64, Feature Request, Windows, gpgol
werner added a project to T2295: Provide 64-bit gpgol.dll for new 64-bit versions of Office: Feature Request.
Mar 29 2016, 1:22 PM · Windows 64, Feature Request, Windows, gpgol

Mar 28 2016

mech renamed T2297: Refresh keys fails for whole (large) keyring since GnuPG 2.0.27+ (gpg4win only) from Refresh keys fails for whole (large) keyring since GnuPG 2.0.27+ to Refresh keys fails for whole (large) keyring since GnuPG 2.0.27+ (gpg4win only).
Mar 28 2016, 10:32 AM · gnupg, Bug Report
mech added a comment to T2297: Refresh keys fails for whole (large) keyring since GnuPG 2.0.27+ (gpg4win only).

After some uninstall/install cycles on Win8.1 for several gpg4win versions, I
can tell that only the mentioned gpg4win versions are troublesome as soon as
there's GnuPG 2.0.27+ bundled.

I also tried the plain vanilla gnupg-w32-2.1.11_20160209.exe and everything's
fine, too. As there's no 2.0.x non gpg4win binary on the server, I can't tell if
that's really only a gpg4win whatsoever issue. Pretty strange... For me that's
fine to use, but as most Windows users will stick to gpg4win and the 2.0.x
versions, probably still worth checking.

gpg: Total number processed: 307
gpg: unchanged: 307

C:\Users\mech>gpg --version
gpg (GnuPG) 2.1.11
libgcrypt 1.6.5

Mar 28 2016, 10:32 AM · gnupg, Bug Report
mech added a comment to T2297: Refresh keys fails for whole (large) keyring since GnuPG 2.0.27+ (gpg4win only).

Got feedback from users with MacOS GnuPG 2.0.28 and Debian testing GnuPG 2.1.11.
-> not affected despite very similar, if not identical keyring sizes.

So currently only Windows setups having trouble with --refresh-keys.
Will try to get more feedback for Windows with gpg4win.

Mar 28 2016, 9:41 AM · gnupg, Bug Report

Mar 27 2016

mech added a project to T2297: Refresh keys fails for whole (large) keyring since GnuPG 2.0.27+ (gpg4win only): Bug Report.
Mar 27 2016, 1:35 PM · gnupg, Bug Report

Mar 25 2016

rtillitt added a project to T2296: gpg4win -- Kleopatra doesn't work on Windows 7, 64bit: Bug Report.
Mar 25 2016, 11:13 PM · gpg4win, Bug Report
neal claimed T2294: missing key for symbolic link tofu.d/email/*/file.db lead to segfaul.
Mar 25 2016, 1:50 PM · gnupg, Bug Report
neal added a comment to T2294: missing key for symbolic link tofu.d/email/*/file.db lead to segfaul.

Thanks for reporting this! These types of bugs are important. Thanks for
reporting it. I will take a look at it soon.

Mar 25 2016, 1:50 PM · gnupg, Bug Report
RAnders00 added projects to T2295: Provide 64-bit gpgol.dll for new 64-bit versions of Office: Windows, Windows 64.
Mar 25 2016, 1:21 PM · Windows 64, Feature Request, Windows, gpgol
RAnders00 raised the priority of T2295: Provide 64-bit gpgol.dll for new 64-bit versions of Office from Normal to Unbreak Now!.
Mar 25 2016, 1:18 PM · Windows 64, Feature Request, Windows, gpgol
RAnders00 added projects to T2295: Provide 64-bit gpgol.dll for new 64-bit versions of Office: gpgol, Bug Report.
Mar 25 2016, 1:17 PM · Windows 64, Feature Request, Windows, gpgol
RAnders00 set Version to 2.3.0 on T2295: Provide 64-bit gpgol.dll for new 64-bit versions of Office.
Mar 25 2016, 1:17 PM · Windows 64, Feature Request, Windows, gpgol
jukivili added a comment to T2292: cipher/crc-intel-pclmul.c: load of misaligned address.

Current code is perfectly fine as crc-intel-pclmul.c is i386/amd64-only source
file and that target architecture can handle unaligned loads.

Mar 25 2016, 12:15 PM · Not A Bug, Bug Report, Assembler, libgcrypt
bernhard added a project to T2293: gpg-agent + smartcard not asking for PIN with PUTTY: Not A Bug.
Mar 25 2016, 11:36 AM · Windows 64, gnupg (gpg20), gpg4win, Bug Report, Not A Bug, gnupg, Windows
bernhard added a comment to T2293: gpg-agent + smartcard not asking for PIN with PUTTY.

Thanks for testing 2.1 and for reporting the results.
Good to know that it works now.

Mar 25 2016, 11:36 AM · Windows 64, gnupg (gpg20), gpg4win, Bug Report, Not A Bug, gnupg, Windows
bernhard closed T2293: gpg-agent + smartcard not asking for PIN with PUTTY as Resolved.
Mar 25 2016, 11:36 AM · Windows 64, gnupg (gpg20), gpg4win, Bug Report, Not A Bug, gnupg, Windows
timtim added a comment to T2293: gpg-agent + smartcard not asking for PIN with PUTTY.

I have good news : gpg 2.1 rocks !
Problem solved and here is the solution :

As Sijie said, the "smartcard compatible" pageant was loading the SIG key and
the AUTH key.

Unfortunately, under gpg 2.0.x, when you export a public key and use gpg2ssh,
the output is the ssh key for the SIG key (and not the auth).

So when using gpg-agent, it was waiting for putty to request the AUTH key and
not the SIG key (as it should !). The "smartcard enabled" pageant was sending
the SIG key so it was working with it.

Now for the good part : with gpg 2.1, we can now natively use --export-ssh-key,
and this command export the AUTH key, so in the end, it works :)

Thank you everyone for the help, and I hope it can helps other people too !

Can we close this bug please ?

Regards

Mar 25 2016, 9:07 AM · Windows 64, gnupg (gpg20), gpg4win, Bug Report, Not A Bug, gnupg, Windows

Mar 24 2016

guido renamed T2294: missing key for symbolic link tofu.d/email/*/file.db lead to segfaul from missing key in tofu.d/email/ to missing key for symbolic link tofu.d/email/*/file.db lead to segfaul.
Mar 24 2016, 6:05 PM · gnupg, Bug Report
guido added a comment to T2294: missing key for symbolic link tofu.d/email/*/file.db lead to segfaul.

This should be somehow a uncommon thing but i wanted to get notice. I sync my
tofu.d directory with git annex. Removed the .git directory in that place lead a
lot of symbolic link not find the original file, as expected, but when trying to
open a mail from mutt i was not able to see them and the keys were not recreated
as the .git directory wasn't there

gpg: Firmado el jue 10 mar 2016 19:16:12 CLT
gpg: usando RSA clave XXXXXXXXXXXX
gpg: Warning: Home directory contains both tofu.db and tofu.d.
gpg: Using split format for TOFU database
gpg: error opening TOFU database
'/home/guido/.gnupg/tofu.d/email/se/some_email.db': unable to open database file

gpg: signal Segmentation fault caught ... exiting
Violación de segmento

it's probably very small, but i wanted to let you know

thanks for your work!

Mar 24 2016, 6:05 PM · gnupg, Bug Report
timtim added a comment to T2293: gpg-agent + smartcard not asking for PIN with PUTTY.

For history purpose, and trying to maximize information, I have been asked to post some part of the discussion I have
on the mailing list about this problem. Here it is :

I tried older version (of gpg4win) (which, at the time, worked for people with the
same setup as myself), but I can try new version too of course.

That is helpful, because development right now is concentrating more
on Gpg4win 3 with the new GnuPG 2.1 (to become 2.2) and this is where
gpg-agent and pinentry is handled slightly differently. So making sure that
it works with the new version is better for the future.

Ok, I installed gpg4win 3.0.0 BETA 128.
The problem stay the same, no pin is asked.

In the mean time, I tried this tool : http://smartcard-auth.de/ssh-en.html
It replace the pageant.exe that ships with putty. And it works. When I
log on the server with putty, I got asked for the PIN. So I think this
is not a problem with the smartcard or with keys. It seems that it's
only that gpg-agent doesn't trigger the pinentry.

I tried witht gpg-agent on another computer (fresh install) running Windows 7 x64, and
with another smartcard, same problem : no pinentry asked.

Mar 24 2016, 5:40 PM · Windows 64, gnupg (gpg20), gpg4win, Bug Report, Not A Bug, gnupg, Windows
guido added a project to T2294: missing key for symbolic link tofu.d/email/*/file.db lead to segfaul: Bug Report.
Mar 24 2016, 5:37 PM · gnupg, Bug Report
timtim added a comment to T2293: gpg-agent + smartcard not asking for PIN with PUTTY.

Yes gpg-agent is started before, I can see it in the process list (and even the scdaemon process).

In fact, pageant can't be started at the same time as gpg-agent (I suppose it share the same mutex because it
says "pageant is already running" when I try to start pageant while gpg-agent is already running).

Mar 24 2016, 5:33 PM · Windows 64, gnupg (gpg20), gpg4win, Bug Report, Not A Bug, gnupg, Windows
werner updated subscribers of T2293: gpg-agent + smartcard not asking for PIN with PUTTY.
Mar 24 2016, 5:15 PM · Windows 64, gnupg (gpg20), gpg4win, Bug Report, Not A Bug, gnupg, Windows
werner added a comment to T2293: gpg-agent + smartcard not asking for PIN with PUTTY.

Did you start gpg-agent before putty or pageant?

Mar 24 2016, 5:15 PM · Windows 64, gnupg (gpg20), gpg4win, Bug Report, Not A Bug, gnupg, Windows
werner updated subscribers of T2292: cipher/crc-intel-pclmul.c: load of misaligned address.
Mar 24 2016, 5:13 PM · Not A Bug, Bug Report, Assembler, libgcrypt
werner added a project to T2292: cipher/crc-intel-pclmul.c: load of misaligned address: Assembler.
Mar 24 2016, 5:11 PM · Not A Bug, Bug Report, Assembler, libgcrypt
werner added a comment to T2292: cipher/crc-intel-pclmul.c: load of misaligned address.

The code in question is only for i386 and given that no SSE instructions are
used I wonder why you consider this a bug. The code might be faster if we would
access the short properly aligned but the question is whether this is worth an
extra copy operation.

jussi: What do you say?

Mar 24 2016, 5:11 PM · Not A Bug, Bug Report, Assembler, libgcrypt
bernhard updated subscribers of T2293: gpg-agent + smartcard not asking for PIN with PUTTY.
Mar 24 2016, 2:26 PM · Windows 64, gnupg (gpg20), gpg4win, Bug Report, Not A Bug, gnupg, Windows
bernhard added projects to T2293: gpg-agent + smartcard not asking for PIN with PUTTY: Windows, gpg4win, gnupg (gpg20), Windows 64.
Mar 24 2016, 2:26 PM · Windows 64, gnupg (gpg20), gpg4win, Bug Report, Not A Bug, gnupg, Windows
timtim added projects to T2293: gpg-agent + smartcard not asking for PIN with PUTTY: gnupg, Bug Report.
Mar 24 2016, 10:54 AM · Windows 64, gnupg (gpg20), gpg4win, Bug Report, Not A Bug, gnupg, Windows
aixtools added a comment to T2074: Redeclaration of internal functions to use "external" typedef prevents build on AIX.

Not easy yet, need more time to dig.

Mar 24 2016, 2:00 AM · Bug Report, libgcrypt

Mar 23 2016

aheinecke added a comment to T2271: GpgOL: Should be possible to leave S/MIME to Outlook.

GpgOL-1.4 which we will include in 2.3.1 will have an option dialog where you
can enable and disable S/MIME. Default in 1.4 is off.

-> Testing until 2.3.1 is released.

Mar 23 2016, 6:48 PM · Bug Report, gpgol, gpg4win
aheinecke added a project to T2271: GpgOL: Should be possible to leave S/MIME to Outlook: Restricted Project.
Mar 23 2016, 6:48 PM · Bug Report, gpgol, gpg4win
aheinecke added a comment to T2249: Pinetry field "enter passphrase" won't let me paste in.

I think this can be resolved. Yes older versions did not allow pasting but
recent versions do allow this. So we've fixed the bug in recent versions ->
resolved. No?

The reporter says he is using ubuntu 14 (i assume 14.4) where the default
pinentry is pinentry-gtk2 0.8.3

Mar 23 2016, 6:44 PM · Feature Request, Info Needed, pinentry
Lekensteyn set Version to libgcrypt-1.6.0-361-ge709d86 on T2292: cipher/crc-intel-pclmul.c: load of misaligned address.
Mar 23 2016, 6:41 PM · Not A Bug, Bug Report, Assembler, libgcrypt
Lekensteyn added projects to T2292: cipher/crc-intel-pclmul.c: load of misaligned address: libgcrypt, Bug Report.
Mar 23 2016, 6:41 PM · Not A Bug, Bug Report, Assembler, libgcrypt