Page MenuHome GnuPG
Feed Advanced Search

Feb 17 2014

werner closed T1592: Pinentry's max password length is too short as Resolved.
Feb 17 2014, 6:08 PM · Not A Bug, gpg4win, Bug Report, Windows 64, pinentry, OpenPGP, Windows
werner added a project to T1592: Pinentry's max password length is too short: Not A Bug.
Feb 17 2014, 6:08 PM · Not A Bug, gpg4win, Bug Report, Windows 64, pinentry, OpenPGP, Windows

Feb 14 2014

killerog added a comment to T1592: Pinentry's max password length is too short.

Sorry for the delay, the passphrase is 512 characters long (now I should change
it after publishing that here ;-)) and just ascii characters.

Feb 14 2014, 6:55 PM · Not A Bug, gpg4win, Bug Report, Windows 64, pinentry, OpenPGP, Windows

Jan 28 2014

werner added a project to T1582: Error in make check -- compiling with MinGW for Windows: Mistaken.
Jan 28 2014, 5:30 PM · Mistaken, Bug Report, gnupg, Windows 32, gnupg (gpg14), Windows
werner changed Due Date from Dec 16 2013, 12:00 AM to Dec 15 2013, 1:00 AM on T1582: Error in make check -- compiling with MinGW for Windows.
Jan 28 2014, 5:30 PM · Mistaken, Bug Report, gnupg, Windows 32, gnupg (gpg14), Windows
werner closed T1582: Error in make check -- compiling with MinGW for Windows as Resolved.
Jan 28 2014, 5:30 PM · Mistaken, Bug Report, gnupg, Windows 32, gnupg (gpg14), Windows

Jan 23 2014

werner added a comment to T1592: Pinentry's max password length is too short.

With GnuPG 1.x, Enigmail takes care of presenting the passphrase dialog.
With GnuPG 2.x GnuPG does it of its own. For that it spawns a small tool
called pinentry which asks for the passphrase. We actually have several
versions of that pinentry. The one you are using is based on Qt (a toolkit) and
has a limit of 256 bytes for the passphrase. The limit may actually be lower if
you are using non-ascii characters, but I can't see how that value is not
sufficient.

How long is your passphrase and does it contain many non-ascii characters (e.g.
Umlauts)?

Jan 23 2014, 9:11 PM · Not A Bug, gpg4win, Bug Report, Windows 64, pinentry, OpenPGP, Windows

Jan 22 2014

killerog added a comment to T1592: Pinentry's max password length is too short.

Jan 22 2014, 9:15 PM · Not A Bug, gpg4win, Bug Report, Windows 64, pinentry, OpenPGP, Windows
killerog added a comment to T1592: Pinentry's max password length is too short.

Hello, Thank you for your reply.

I used the gpg4win-2.2.1.exe binary which I downloaded from gpg4win.org

The popup I mentioned is the screen that asks me for my password when I try to
open an encrypted mail in my mailbox via thunderbird/enigmail. See the
screenshot. In the newer gpg version this popup is replaced by a prompt screen
that says pinentry and will allow only for shorter passwords.

I understand that my password is exceptional long, as I still was (and maybe
still am) a beginner on the encrypted mail part. But backwards compatibility
seems pretty important in the case of encrypted mails and passwords to decrypt them.

Jan 22 2014, 9:15 PM · Not A Bug, gpg4win, Bug Report, Windows 64, pinentry, OpenPGP, Windows

Jan 8 2014

werner added a comment to T1592: Pinentry's max password length is too short.

What do you mean by "openpgp popup"?

Which installation options did you used whethn installing gpg4win? Depending on
the version you get a different pinentry version - we have a qt based one, a GTK
based base, and a very simple native windows pinentry.

Jan 8 2014, 8:03 PM · Not A Bug, gpg4win, Bug Report, Windows 64, pinentry, OpenPGP, Windows
werner added a project to T1592: Pinentry's max password length is too short: gpg4win.
Jan 8 2014, 8:03 PM · Not A Bug, gpg4win, Bug Report, Windows 64, pinentry, OpenPGP, Windows

Dec 27 2013

killerog added projects to T1592: Pinentry's max password length is too short: Windows, OpenPGP, pinentry, Windows 64, Bug Report.
Dec 27 2013, 11:36 PM · Not A Bug, gpg4win, Bug Report, Windows 64, pinentry, OpenPGP, Windows
killerog set Version to 2.2.1 on T1592: Pinentry's max password length is too short.
Dec 27 2013, 11:36 PM · Not A Bug, gpg4win, Bug Report, Windows 64, pinentry, OpenPGP, Windows

Dec 19 2013

erich_carlmann added a comment to T1582: Error in make check -- compiling with MinGW for Windows.

sorry can't delete

Dec 19 2013, 4:13 PM · Mistaken, Bug Report, gnupg, Windows 32, gnupg (gpg14), Windows

Dec 16 2013

erich_carlmann added projects to T1582: Error in make check -- compiling with MinGW for Windows: Windows, gnupg (gpg14), Windows 32, gnupg, Bug Report.
Dec 16 2013, 6:30 PM · Mistaken, Bug Report, gnupg, Windows 32, gnupg (gpg14), Windows
erich_carlmann set Version to 1.4.15 on T1582: Error in make check -- compiling with MinGW for Windows.
Dec 16 2013, 6:30 PM · Mistaken, Bug Report, gnupg, Windows 32, gnupg (gpg14), Windows
erich_carlmann set Due Date to Dec 16 2013, 12:00 AM on T1582: Error in make check -- compiling with MinGW for Windows.
Dec 16 2013, 6:30 PM · Mistaken, Bug Report, gnupg, Windows 32, gnupg (gpg14), Windows

Nov 22 2013

aheinecke reassigned T1571: gpg --multifile and wildcards problem on Windows from aheinecke to werner.
Nov 22 2013, 7:13 PM · Bug Report, Windows 32, gpg4win, Windows
aheinecke added a comment to T1571: gpg --multifile and wildcards problem on Windows.

Mmmh when I run:

#include <stdio.h>
int _dowildcard = -1;
int main (int argc, char **argv)
{

int i = 0;
for ( i = 0; i< argc; i++) {
    printf("%s\n", argv[i]);
}
return 0;

}

With the command line *.* it just prints "*.*". Linking with CRT_glob.o directly
also leads to the same result.

Nov 22 2013, 7:13 PM · Bug Report, Windows 32, gpg4win, Windows
aheinecke added a comment to T1571: gpg --multifile and wildcards problem on Windows.

Hi,
there is apparently a compile option "enable-wildcard" for the mingw-w64 c runtime.

But from:
http://mingw-w64.sourcearchive.com/documentation/0~20100125-3/wildcard_8c-source.html

I take it that you can also enable it in the program by defining int _dowildcard

-1;

I'll test it and let you know if this worked.

Nov 22 2013, 6:32 PM · Bug Report, Windows 32, gpg4win, Windows
aheinecke claimed T1571: gpg --multifile and wildcards problem on Windows.
Nov 22 2013, 6:32 PM · Bug Report, Windows 32, gpg4win, Windows
werner set Version to 2.2.0 on T1571: gpg --multifile and wildcards problem on Windows.
Nov 22 2013, 10:41 AM · Bug Report, Windows 32, gpg4win, Windows
werner added projects to T1571: gpg --multifile and wildcards problem on Windows: Windows, gpg4win, Windows 32, Bug Report.
Nov 22 2013, 10:41 AM · Bug Report, Windows 32, gpg4win, Windows

Oct 24 2013

werner removed a project from T1525: Gpa crashes on windows when copying a key to the clipboard: Restricted Project.
Oct 24 2013, 7:43 AM · Windows 64, Bug Report, gpa, Windows 32, Windows
werner closed T1525: Gpa crashes on windows when copying a key to the clipboard as Resolved.
Oct 24 2013, 7:43 AM · Windows 64, Bug Report, gpa, Windows 32, Windows

Sep 6 2013

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

For diagnostic reasons: could you try with Kleopatra as well?

Sep 6 2013, 12:42 PM · Duplicate, Windows 64, Bug Report, gpg4win, Windows, gpgex
TripleOPS added a comment to T1536: gpgex crashes Win7 64bit when using GNUPGHOME.

Maybe this is relevant:
I only installed gpg, gpgEX and GPA from the GPG4Win package.

Using gpg.exe on the command line works perfect.
I can en- and decrypt files and sign and whatnot.
Only gpgEX is affected.

Sep 6 2013, 12:24 PM · Duplicate, Windows 64, Bug Report, gpg4win, Windows, gpgex
TripleOPS added a comment to T1536: gpgex crashes Win7 64bit when using GNUPGHOME.

Sep 6 2013, 11:27 AM · Duplicate, Windows 64, Bug Report, gpg4win, Windows, gpgex
TripleOPS added a comment to T1536: gpgex crashes Win7 64bit when using GNUPGHOME.

The crash happen regardless of what I did before. Usually I use Q-Dir as file
browser. When I trigger a gpgex action via context menu in one Q-Dir OR Windows
Explorer the program (the one I used) crashes.

I set GNUPGHOME as a user variable via Windows' Extended System Settings.

I followed Bernhard's suggestion and attached the GpgEX debug log.

Sep 6 2013, 11:27 AM · Duplicate, Windows 64, Bug Report, gpg4win, Windows, gpgex
TripleOPS set Version to 1.1.0 on T1536: gpgex crashes Win7 64bit when using GNUPGHOME.
Sep 6 2013, 11:27 AM · Duplicate, Windows 64, Bug Report, gpg4win, Windows, gpgex
werner placed T1536: gpgex crashes Win7 64bit when using GNUPGHOME up for grabs.
Sep 6 2013, 11:12 AM · Duplicate, Windows 64, Bug Report, gpg4win, Windows, gpgex
werner added a comment to T1536: gpgex crashes Win7 64bit when using GNUPGHOME.

Please provide a proper bug report so that we are able to replicate this. For
example, how did you set GNUGHOME, what process have been started before that
etc. A complete run trough on how to exhibit the bug would be a appreciated.

Sep 6 2013, 11:12 AM · Duplicate, Windows 64, Bug Report, gpg4win, Windows, gpgex
bernhard added a comment to T1536: gpgex crashes Win7 64bit when using GNUPGHOME.

Thanks for asking again, I did not remember that GPGex was missing from the
compendium.

It works similiar to GpgOL, see
http://git.gnupg.org/cgi-
bin/gitweb.cgi?p=gpgex.git;a=blob_plain;f=README;hb=HEAD
and in German:
http://lists.wald.intevation.org/pipermail/gpg4win-users-de/2013-
August/000593.html

Sep 6 2013, 10:29 AM · Duplicate, Windows 64, Bug Report, gpg4win, Windows, gpgex
bernhard reassigned T1536: gpgex crashes Win7 64bit when using GNUPGHOME from aheinecke to werner.
Sep 6 2013, 10:29 AM · Duplicate, Windows 64, Bug Report, gpg4win, Windows, gpgex
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, Windows, gpgex
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, Windows, gpgex

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, Not A Bug, Windows

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, Not A Bug, Windows
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, Not A Bug, Windows
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, Not A Bug, Windows
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, Not A Bug, Windows

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