Page MenuHome GnuPG
Feed Advanced Search

Sep 6 2013

TripleOPS added a comment to T1536: gpgex crashes Win7 64bit when using GNUPGHOME.

Actually, I can't.
The link you provided leads to a site with some general infos.
There is another link into the compendium with infos about
some GPG4Win components but not a single word on gpgex.

So HOW do I provide some more diagnostic output?

Sep 6 2013, 9:28 AM · Duplicate, Windows 64, Bug Report, gpg4win, gpgex, Windows
bernhard added projects to T1536: gpgex crashes Win7 64bit when using GNUPGHOME: Windows, gpg4win, Windows 64.
Sep 6 2013, 8:44 AM · Duplicate, Windows 64, Bug Report, gpg4win, gpgex, Windows

Sep 2 2013

emanuel added a comment to T1324: Encryption of an folder with umlauts failed.

works with Gpg4win 2.2.0. But there is a failure after decrypting folder with
umlauts: see gpg4win wald issue #6451
(https://wald.intevation.org/tracker/index.php?func=detail&aid=6451&group_id=11&atid=126)

Sep 2 2013, 4:47 PM · Bug Report, Windows 32, gpgex, gpg4win, Windows
emanuel closed T1324: Encryption of an folder with umlauts failed as Resolved.
Sep 2 2013, 4:47 PM · Bug Report, Windows 32, gpgex, gpg4win, Windows

Aug 22 2013

aheinecke added projects to T1529: GpgOL for Outlook 2010+ does not read Address entrys from Exchange: Windows, gpg4win, gpgol, Windows 32, Bug Report.
Aug 22 2013, 3:12 PM · Bug Report, Windows 32, gpgol, gpg4win, Windows
aheinecke set Version to 1.2.0 on T1529: GpgOL for Outlook 2010+ does not read Address entrys from Exchange.
Aug 22 2013, 3:12 PM · Bug Report, Windows 32, gpgol, gpg4win, Windows

Aug 16 2013

werner added a project to T1525: Gpa crashes on windows when copying a key to the clipboard: Restricted Project.
Aug 16 2013, 4:18 PM · Windows 64, Bug Report, gpa, Windows 32, Windows
werner added a comment to T1525: Gpa crashes on windows when copying a key to the clipboard.

Fixed in d3f20e7. Applied patch to gpg4win as well.

Aug 16 2013, 4:18 PM · Windows 64, Bug Report, gpa, Windows 32, Windows
aheinecke added a comment to T1525: Gpa crashes on windows when copying a key to the clipboard.

Aug 16 2013, 12:52 PM · Windows 64, Bug Report, gpa, Windows 32, Windows
aheinecke added a comment to T1525: Gpa crashes on windows when copying a key to the clipboard.

In the backtrace gpa_backtrace2.png you can see that the crash happens:
https://bugzilla.gnome.org/show_bug.cgi?id=696232

If we apply the patch it no longer crashes, but as the error handling in that
patch is just to abort, the text is not copied into the clipboard and we do not
get an error in GPA.

So still some more debugging why invalid utf-8 data is sent from gpa.
As the data worked on comes from GPA and "should" be valid utf-8

Aug 16 2013, 12:52 PM · Windows 64, Bug Report, gpa, Windows 32, Windows

Aug 14 2013

aheinecke added a comment to T1525: Gpa crashes on windows when copying a key to the clipboard.

Backtrace attached. Sorry that it is an image but windows was blocking me from
copying the gdb output to the clipboard.

Aug 14 2013, 6:23 PM · Windows 64, Bug Report, gpa, Windows 32, Windows
aheinecke added a comment to T1525: Gpa crashes on windows when copying a key to the clipboard.

Aug 14 2013, 6:23 PM · Windows 64, Bug Report, gpa, Windows 32, Windows
aheinecke added projects to T1525: Gpa crashes on windows when copying a key to the clipboard: Windows, Windows 32, gpa, Bug Report, Windows 64.
Aug 14 2013, 6:07 PM · Windows 64, Bug Report, gpa, Windows 32, Windows

May 1 2013

werner added a project to T1012: w32 / validating signature crashes GPA which tries to dereference a null-pointer: Too Old.
May 1 2013, 11:34 AM · Too Old, Bug Report, gpa, Windows 32, Windows
werner closed T1012: w32 / validating signature crashes GPA which tries to dereference a null-pointer as Resolved.
May 1 2013, 11:34 AM · Too Old, Bug Report, gpa, Windows 32, Windows
werner added a comment to T1012: w32 / validating signature crashes GPA which tries to dereference a null-pointer.

Let's assume that the problem was in the glib library and has been fixed in the
meantime. I will soon release a new Gpg4win version with the latest stable glib
version. Feel free to reopen if you still encounter this problem.

May 1 2013, 11:34 AM · Too Old, Bug Report, gpa, Windows 32, Windows

Sep 26 2012

werner added a comment to T1439: Windows: race condition on random_seed.

Yeah sure, I meant "NOT a problem".

Yes I know what you mean. But without locking you will never be able
to get it right.

As you noted there is actually a problem with Libgcrypt under
Windows. In Libgcrypt we lock the seed file and thus the fatal error
is the right thing to do. But.....

  #ifdef __GCC__
  #warning Check whether we can lock on Windows.
  #endif
  #if LOCK_SEED_FILE

Thus we should implement locking for Windows. The problem here is
that there is no portable advisory locking in Windows. And frankly our
fcntl locking approach does not work on all Unices either and worse it
does not work if the home partition is on certain remote file systems.

The only solution I see is to employ the new dotlock code from GnuPG
here. It is slower than fcntl locking but very portable.

I don't think we will fix this in gpg 1.4.

Sep 26 2012, 3:15 PM · libgcrypt, Bug Report

Sep 18 2012

jegrp added a comment to T1439: Windows: race condition on random_seed.

This is known but a problem from a security POV.

I suppose you mean "NOT a problem"? I think it might be a problem in
opportunistic encryption scenarios if gpg encryption failures caused by
random_seed access conflicts are ignored like failures caused by missing keys.
But usually it's just a nuisance like any other randomly failing program.

The non-locking read is on purpose - if it works: okay. Otherwise we
re-generate a seed file.

I see that the code tries to tolerate access conflicts, but there's still a race
condition if the random_seed file is truncated between fstat() and read(). The
read() error handling is incomplete. Maybe this pseudo-patch explains best what
I mean:

diff -ru gnupg-1.4.12/cipher/random.c gnupg-1.4.12/cipher/random.c

  • gnupg-1.4.12/cipher/random.c 2012-01-24 09:45:41.000000000 +0100

+++ gnupg-1.4.12/cipher/random.c 2012-09-18 19:47:54.449578800 +0200
@@ -492,11 +492,17 @@

    do {
	n = read( fd, buffer, POOLSIZE );
    } while( n == -1 && errno == EINTR );
  • if( n != POOLSIZE ) {

+ if( n == -1 ) {

	log_fatal(_("can't read `%s': %s\n"), seed_file_name,strerror(errno) );
	close(fd);
	return 0;
    }

+ else if ( n == 0 ) {
+ ... handle like sb.st_size == 0
+ }
+ else if ( n != POOLSIZE ) {
+ ...
handle like sb.st_size != POOLSIZ
+ }

     close(fd);

Yes, we could do the file locking

Proper locking would be the ideal solution, but a better read() error handling
would already be sufficient to avoid the sporadic fatal errors on random_seed
accesses.

and iirc, we do this in libgcrypt (GnuPG-2).

I'm just checking this and ... sorry, no. The gpg2.exe from Gpg4win 2.1.0 shows
the very same error:

note: random_seed file is empty
note: random_seed file is empty
Fatal: can't read `C:/Dokumente und
Einstellungen/jechternach/Anwendungsdaten/GnuPG /random_seed': No such file or
directory

This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
note: random_seed file is empty

Sep 18 2012, 7:52 PM · libgcrypt, Bug Report

Sep 17 2012

werner added a comment to T1439: Windows: race condition on random_seed.

This is known but a problem from a security POV. The seed file is a cache. If
the seed file can't be read a new one is created. Right, there might be a
performance issue but at least on Windows this is not as severe as on certain
Linux systems.

The non-locking read is on purpose - if it works: okay. Otherwise we
re-generate a seed file. Yes, we could do the file locking and iirc, we do this
in libgcrypt (GnuPG-2).

The error on short reads is also on purpose. We want those 600 bytes at once
and nothing else. If another process is writing the seed file we may see the
short reads. But in this case there is no clear answer waht to do - thus we
assume the "no seed file" case.

Sep 17 2012, 2:59 PM · libgcrypt, Bug Report
werner lowered the priority of T1439: Windows: race condition on random_seed from High to Normal.
Sep 17 2012, 2:59 PM · libgcrypt, Bug Report
werner added a project to T1439: Windows: race condition on random_seed: gnupg.
Sep 17 2012, 2:59 PM · libgcrypt, Bug Report

Aug 29 2012

jegrp added projects to T1439: Windows: race condition on random_seed: Windows, Windows 32, Bug Report.
Aug 29 2012, 6:03 PM · libgcrypt, Bug Report
jegrp set Version to 1.4.12 on T1439: Windows: race condition on random_seed.
Aug 29 2012, 6:03 PM · libgcrypt, Bug Report

Jan 3 2012

werner closed T1010: Cache file rename problem under W32 as Resolved.
Jan 3 2012, 6:55 PM · gpg4win, Bug Report, Windows 32, Windows, dirmngr
werner removed a project from T1010: Cache file rename problem under W32: Restricted Project.
Jan 3 2012, 6:55 PM · gpg4win, Bug Report, Windows 32, Windows, dirmngr

Sep 15 2011

werner closed T1360: Stack corruption in _gcry_rndw32_gather_random_fast (w64) as Resolved.
Sep 15 2011, 9:22 AM · Windows 64, Bug Report, libgcrypt, Windows, Not A Bug

Aug 3 2011

werner added a comment to T1360: Stack corruption in _gcry_rndw32_gather_random_fast (w64).

Libgcrypt does not support 64 bit Windows yet. In particular do not use it even
if it would build and run fine. MSVC is not a supported build platform anyway.

Aug 3 2011, 6:36 AM · Windows 64, Bug Report, libgcrypt, Windows, Not A Bug
werner added a project to T1360: Stack corruption in _gcry_rndw32_gather_random_fast (w64): Not A Bug.
Aug 3 2011, 6:36 AM · Windows 64, Bug Report, libgcrypt, Windows, Not A Bug
MGtB set Version to 1.5.0 on T1360: Stack corruption in _gcry_rndw32_gather_random_fast (w64).
Aug 3 2011, 1:11 AM · Windows 64, Bug Report, libgcrypt, Windows, Not A Bug
MGtB added projects to T1360: Stack corruption in _gcry_rndw32_gather_random_fast (w64): Windows, libgcrypt, Bug Report, Windows 64.
Aug 3 2011, 1:11 AM · Windows 64, Bug Report, libgcrypt, Windows, Not A Bug

Jul 4 2011

werner changed Version from 1.4.11 (and 1.4.10) to 1.4.11 on T1298: GPG hangs after Signing a key.
Jul 4 2011, 12:28 PM · Mistaken, Windows 32, Info Needed, Windows, Bug Report, gnupg
werner closed T1298: GPG hangs after Signing a key as Resolved.
Jul 4 2011, 12:28 PM · Mistaken, Windows 32, Info Needed, Windows, Bug Report, gnupg

Jul 1 2011

Wolfgang_Schlage added a comment to T1298: GPG hangs after Signing a key.

Thanks, Werner, for your reply and your suggestions. I'll have a look at the
GPGME solution.

Jul 1 2011, 2:43 PM · Mistaken, Windows 32, Info Needed, Windows, Bug Report, gnupg
Wolfgang_Schlage reopened T1298: GPG hangs after Signing a key as "Open".
Jul 1 2011, 2:43 PM · Mistaken, Windows 32, Info Needed, Windows, Bug Report, gnupg
werner added a project to T1117: German Umlaute are wrong in console: Feature Request.
Jul 1 2011, 12:29 PM · Feature Request, Windows 32, Windows, gnupg
werner removed a project from T1117: German Umlaute are wrong in console: Bug Report.
Jul 1 2011, 12:29 PM · Feature Request, Windows 32, Windows, gnupg
werner lowered the priority of T1117: German Umlaute are wrong in console from Normal to Wishlist.
Jul 1 2011, 12:29 PM · Feature Request, Windows 32, Windows, gnupg
werner added a comment to T1117: German Umlaute are wrong in console.

This is a long standing problem. Usually GPG is used by other utilities and
they exepct utf-8. Thus we would habe to detect the plain use of the console
and then dosomething about it.

Jul 1 2011, 12:29 PM · Feature Request, Windows 32, Windows, gnupg
werner added a comment to T1298: GPG hangs after Signing a key.

No response to my last message. It seems to be an IPC bug and not related to
GPG given that other GUIs don't have these problems.

Jul 1 2011, 11:23 AM · Mistaken, Windows 32, Info Needed, Windows, Bug Report, gnupg
werner added projects to T1298: GPG hangs after Signing a key: Windows, Info Needed, Windows 32, Mistaken.
Jul 1 2011, 11:23 AM · Mistaken, Windows 32, Info Needed, Windows, Bug Report, gnupg
werner closed T1298: GPG hangs after Signing a key as Resolved.
Jul 1 2011, 11:23 AM · Mistaken, Windows 32, Info Needed, Windows, Bug Report, gnupg

Mar 17 2011

werner placed T1324: Encryption of an folder with umlauts failed up for grabs.
Mar 17 2011, 4:52 PM · Bug Report, Windows 32, gpgex, gpg4win, Windows
werner lowered the priority of T1324: Encryption of an folder with umlauts failed from High to Normal.
Mar 17 2011, 4:52 PM · Bug Report, Windows 32, gpgex, gpg4win, Windows
emanuel added projects to T1324: Encryption of an folder with umlauts failed: Windows, gpg4win, gpgex, Windows 32, Bug Report.
Mar 17 2011, 3:36 PM · Bug Report, Windows 32, gpgex, gpg4win, Windows

Dec 14 2010

werner added a comment to T1010: Cache file rename problem under W32.

Fixed in dirmngr and also in GnuPG trunk. Patch for gpg4win created.

Dec 14 2010, 8:16 PM · gpg4win, Bug Report, Windows 32, Windows, dirmngr
werner added a project to T1010: Cache file rename problem under W32: Restricted Project.
Dec 14 2010, 8:16 PM · gpg4win, Bug Report, Windows 32, Windows, dirmngr

Sep 22 2010

emanuel added a project to T1010: Cache file rename problem under W32: gpg4win.
Sep 22 2010, 3:06 PM · gpg4win, Bug Report, Windows 32, Windows, dirmngr
emanuel added a comment to T1010: Cache file rename problem under W32.

ping, it's important for gpg4win.

Sep 22 2010, 3:06 PM · gpg4win, Bug Report, Windows 32, Windows, dirmngr

May 12 2010

werner added a comment to T623: Welche Rechte Wo ben�tigen die Programme WinPT und PGA.

No info received - assuming everything is fine now.

May 12 2010, 5:18 PM · gpa, Windows 32, Windows, Bug Report
werner removed a project from T623: Welche Rechte Wo ben�tigen die Programme WinPT und PGA: Restricted Project.
May 12 2010, 5:18 PM · gpa, Windows 32, Windows, Bug Report
werner closed T623: Welche Rechte Wo ben�tigen die Programme WinPT und PGA as Resolved.
May 12 2010, 5:18 PM · gpa, Windows 32, Windows, Bug Report

Dec 16 2009

marcus added a comment to T623: Welche Rechte Wo ben�tigen die Programme WinPT und PGA.

I have not tried with differnt volumes, but the current gpg4win release works
fine with regards to admin and normal user. Harry, can you please test if this
is still an issue, or if you have moved on from Windows 2000, I will just close
the report.

Dec 16 2009, 5:32 PM · gpa, Windows 32, Windows, Bug Report
marcus added a project to T623: Welche Rechte Wo ben�tigen die Programme WinPT und PGA: Restricted Project.
Dec 16 2009, 5:32 PM · gpa, Windows 32, Windows, Bug Report

Aug 28 2009

werner added a comment to T1117: German Umlaute are wrong in console.

No time to look into this. Hints on how to fix this are of course welcomes

Aug 28 2009, 9:40 AM · Feature Request, Windows 32, Windows, gnupg

Aug 26 2009

Luke_Filewalker added a comment to T1117: German Umlaute are wrong in console.

And why you won't fix it?

Aug 26 2009, 9:01 PM · Feature Request, Windows 32, Windows, gnupg
werner added projects to T1117: German Umlaute are wrong in console: Windows, Windows 32.
Aug 26 2009, 3:12 PM · Feature Request, Windows 32, Windows, gnupg

Jul 28 2009

werner added a comment to T982: Bad key message when decrypting a message encrypted with a symmetric cipher.

[In may previous message I meant "gpg does not _wait_ for the end ..."]

Jul 28 2009, 10:56 AM · Windows 32, Windows, Not A Bug, Bug Report, gnupg
werner closed T982: Bad key message when decrypting a message encrypted with a symmetric cipher as Resolved.
Jul 28 2009, 10:56 AM · Windows 32, Windows, Not A Bug, Bug Report, gnupg
x reopened T982: Bad key message when decrypting a message encrypted with a symmetric cipher as "Open".
Jul 28 2009, 12:05 AM · Windows 32, Windows, Not A Bug, Bug Report, gnupg
x added a comment to T982: Bad key message when decrypting a message encrypted with a symmetric cipher.

I noticed that the status of this issue was changed to resolved and was
wondering if that meant that it will work in a future version of gnupg or if
it means that nothing will/can be done for the Windows version, i.e. a disk
write will be required each time, and the issue is just closed?

Jul 28 2009, 12:05 AM · Windows 32, Windows, Not A Bug, Bug Report, gnupg

Jul 9 2009

werner closed T982: Bad key message when decrypting a message encrypted with a symmetric cipher as Resolved.
Jul 9 2009, 4:28 PM · Windows 32, Windows, Not A Bug, Bug Report, gnupg

Jun 17 2009

werner claimed T1010: Cache file rename problem under W32.
Jun 17 2009, 3:07 PM · gpg4win, Bug Report, Windows 32, Windows, dirmngr

Mar 19 2009

werner added a comment to T1012: w32 / validating signature crashes GPA which tries to dereference a null-pointer.

According to the manual and also by a quick look at the code of
g_file_get_contents(), which is called before g_utf8_validate, it should never
return TRUE and store NULL at content. Thus I can't figure the real reason for
this by only looking at the code. Needs more debugging.

Mar 19 2009, 12:14 PM · Too Old, Bug Report, gpa, Windows 32, Windows

Mar 12 2009

akappner added projects to T1012: w32 / validating signature crashes GPA which tries to dereference a null-pointer: Windows, Windows 32, gpa, Bug Report.
Mar 12 2009, 10:31 PM · Too Old, Bug Report, gpa, Windows 32, Windows

Mar 10 2009

werner added projects to T1010: Cache file rename problem under W32: dirmngr, Windows, Windows 32, Bug Report.
Mar 10 2009, 3:08 PM · gpg4win, Bug Report, Windows 32, Windows, dirmngr

Mar 2 2009

werner added projects to T982: Bad key message when decrypting a message encrypted with a symmetric cipher: Windows, Windows 32.
Mar 2 2009, 11:22 AM · Windows 32, Windows, Not A Bug, Bug Report, gnupg

Feb 19 2009

emanuel updated subscribers of T1003: Crash of gpg-protect-tool.exe.
Feb 19 2009, 2:29 PM · Bug Report, pinentry, gpg4win, gnupg, S/MIME
emanuel added projects to T1003: Crash of gpg-protect-tool.exe: S/MIME, Windows 32, gnupg, Windows, gpg4win, pinentry, Bug Report.
Feb 19 2009, 2:29 PM · Bug Report, pinentry, gpg4win, gnupg, S/MIME

Dec 10 2008

marcus added a comment to T623: Welche Rechte Wo ben�tigen die Programme WinPT und PGA.

Could be the installation to H. In the last 2.5 years we fixed many bugs that
could have caused this. We should test this with current versions and close if
not reproducible.

Dec 10 2008, 7:11 PM · gpa, Windows 32, Windows, Bug Report
marcus added a comment to T834: vista 64 bit.

The first version of dirmngr that worked on any Windows reasonably well is
1.0.2. Versions before that had a multitude of issues, so I am closing this
report. If there are particular problems with current dirmngrs on 64 bit Vista,
please report them with the appropriate level of details.

Dec 10 2008, 6:59 PM · Bug Report, Windows 32, dirmngr, Windows
marcus closed T834: vista 64 bit as Resolved.
Dec 10 2008, 6:59 PM · Bug Report, Windows 32, dirmngr, Windows

Oct 28 2008

werner closed T686: gpgol passphrase cache can't be emptied - even if passphrase wrong as Resolved.
Oct 28 2008, 5:09 PM · Too Old, Windows 32, scd, Windows, Bug Report, gpgol
werner added a comment to T686: gpgol passphrase cache can't be emptied - even if passphrase wrong.

Meanwhile we have greatly improved gnupg on w32. See www.gpg4win.org. Thus it
makes no sense to care about this old bug anymore. If the problem still
persists with Gpg4win 1.9.9, please re-open this bug.

Oct 28 2008, 5:09 PM · Too Old, Windows 32, scd, Windows, Bug Report, gpgol
werner added a project to T686: gpgol passphrase cache can't be emptied - even if passphrase wrong: Too Old.
Oct 28 2008, 5:09 PM · Too Old, Windows 32, scd, Windows, Bug Report, gpgol

Sep 30 2008

werner added a comment to T886: Problems accessing OpenPGP card on windows with 2.0.8.

We did quite some work on the Widnows stuff and the forthcoming 2.0.10 should
fix a couple of problems. There is a weel known problem with card chnage
detection on all platforms. We are still working on that one. As that is also
tracked by other reports (probably several), I close this one.

Sep 30 2008, 8:18 PM · Bug Report, Windows 32, Windows, gnupg
werner closed T886: Problems accessing OpenPGP card on windows with 2.0.8 as Resolved.
Sep 30 2008, 8:18 PM · Bug Report, Windows 32, Windows, gnupg
werner closed T704: gpg complains about invalid passphrase as Resolved.
Sep 30 2008, 8:05 PM · Too Old, Feature Request, Windows 32, Windows, gnupg
werner added a project to T704: gpg complains about invalid passphrase: Too Old.
Sep 30 2008, 8:05 PM · Too Old, Feature Request, Windows 32, Windows, gnupg
werner added a comment to T704: gpg complains about invalid passphrase.

We are anyway going for GnuPG-2 on Windows. With the gpg-agent framework, there
is no more need for application specific passphrase entries. Thus I close this
bug and wait until it gets a new life in Pinentry ;-).

Sep 30 2008, 8:05 PM · Too Old, Feature Request, Windows 32, Windows, gnupg
werner added a project to T418: windows passphrase not recognised on unix if it is very long: Too Old.
Sep 30 2008, 7:56 PM · Too Old, Windows 32, Windows, Bug Report, gnupg
werner closed T418: windows passphrase not recognised on unix if it is very long as Resolved.
Sep 30 2008, 7:56 PM · Too Old, Windows 32, Windows, Bug Report, gnupg

Mar 5 2008

marcus claimed T623: Welche Rechte Wo ben�tigen die Programme WinPT und PGA.
Mar 5 2008, 4:39 PM · gpa, Windows 32, Windows, Bug Report

Feb 22 2008

werner claimed T886: Problems accessing OpenPGP card on windows with 2.0.8.
Feb 22 2008, 8:18 AM · Bug Report, Windows 32, Windows, gnupg
werner added projects to T886: Problems accessing OpenPGP card on windows with 2.0.8: Windows, Windows 32.
Feb 22 2008, 8:18 AM · Bug Report, Windows 32, Windows, gnupg

Jan 8 2008

werner removed a project from T831: cURL does not work under Visa: Restricted Project.
Jan 8 2008, 11:16 AM · Keyserver, Bug Report, gnupg, Windows 32, Windows
werner closed T831: cURL does not work under Visa as Resolved.
Jan 8 2008, 11:16 AM · Keyserver, Bug Report, gnupg, Windows 32, Windows
werner added a comment to T831: cURL does not work under Visa.

The fix is in 1.4.8.

Jan 8 2008, 11:16 AM · Keyserver, Bug Report, gnupg, Windows 32, Windows

Dec 11 2007

werner closed T605: Decrypting Files Automatically using --passphrase-fd option as Resolved.
Dec 11 2007, 6:16 PM · Not A Bug, Windows 32, Windows, Bug Report, gnupg

Nov 15 2007

werner added a project to T831: cURL does not work under Visa: Restricted Project.
Nov 15 2007, 4:01 PM · Keyserver, Bug Report, gnupg, Windows 32, Windows
werner set Due Date to Nov 20 2007, 1:00 AM on T831: cURL does not work under Visa.
Nov 15 2007, 4:01 PM · Keyserver, Bug Report, gnupg, Windows 32, Windows
werner changed Due Date from Apr 20 2007, 2:00 AM to Nov 20 2007, 1:00 AM on T605: Decrypting Files Automatically using --passphrase-fd option.
Nov 15 2007, 3:09 PM · Not A Bug, Windows 32, Windows, Bug Report, gnupg
werner added a project to T605: Decrypting Files Automatically using --passphrase-fd option: Not A Bug.
Nov 15 2007, 3:09 PM · Not A Bug, Windows 32, Windows, Bug Report, gnupg
werner added a comment to T605: Decrypting Files Automatically using --passphrase-fd option.

You have a trailing space in the file, i.e.

Nov 15 2007, 3:09 PM · Not A Bug, Windows 32, Windows, Bug Report, gnupg

Oct 27 2007

dshaw added a comment to T831: cURL does not work under Visa.

Looks like gpgkeys_curl.exe is being run instead of gpgkeys_hkp.exe. I'm pretty
sure this fixed it:

Oct 27 2007, 10:36 PM · Keyserver, Bug Report, gnupg, Windows 32, Windows

Sep 24 2007

werner added projects to T834: vista 64 bit: Windows, Windows 32.
Sep 24 2007, 6:22 PM · Bug Report, Windows 32, dirmngr, Windows
werner added a comment to T834: vista 64 bit.

There won't be a 64 bit version in the foreseeable future.

Sep 24 2007, 6:22 PM · Bug Report, Windows 32, dirmngr, Windows

Sep 11 2007

werner added projects to T831: cURL does not work under Visa: Windows, Windows 32, gnupg, Bug Report, Keyserver.
Sep 11 2007, 1:42 PM · Keyserver, Bug Report, gnupg, Windows 32, Windows
werner closed T771: Produce from keys with password as Resolved.
Sep 11 2007, 1:37 PM · Info Needed, Windows 32, Bug Report, gnupg, Windows
werner added a project to T771: Produce from keys with password: Info Needed.
Sep 11 2007, 1:37 PM · Info Needed, Windows 32, Bug Report, gnupg, Windows

May 7 2007

werner set Due Date to May 20 2007, 2:00 AM on T771: Produce from keys with password.
May 7 2007, 4:04 PM · Info Needed, Windows 32, Bug Report, gnupg, Windows