Page MenuHome GnuPG
Feed Advanced Search

Apr 3 2017

werner placed T2694: insecure links on gnupg webpage (gnupg.org) that could be https up for grabs.
Apr 3 2017, 11:04 PM · In Progress, Feature Request
werner lowered the priority of T1590: dirmngr with libgcrypt 1.6.0 forgets to initialize pth properly from Unbreak Now! to Normal.
Apr 3 2017, 10:59 PM · In Progress, dirmngr, Bug Report, gnupg (gpg20)

Mar 30 2017

admin created In Progress.
Mar 30 2017, 6:42 PM

Mar 28 2017

werner closed T2819: GPGME: Keylist from file as Resolved.
Mar 28 2017, 4:35 PM · gpgme, Feature Request

Mar 24 2017

werner added a project to T2964: dirmngr and gpg-agent should work automatically even when GNUPGHOME is larger than sun_path: In Progress.
Mar 24 2017, 4:52 PM · Stalled, scd, gpgagent, Bug Report, gnupg, dirmngr

Mar 21 2017

werner added a project to T2819: GPGME: Keylist from file: In Progress.
Mar 21 2017, 9:55 AM · gpgme, Feature Request

Mar 8 2017

justus added a comment to T2910: gpgme 1.8 build failure: strdup undeclared on MacOSX Sierra.

ntbtls fixed in e582e91e47a164816ac074b9078dbed8537601dc.

Mar 8 2017, 1:21 PM · MacOS, gpgme, Bug Report
justus added a comment to T2910: gpgme 1.8 build failure: strdup undeclared on MacOSX Sierra.

libgcrypt fixed in 654024081cfa103c87bb163b117ea3568171d408.

Mar 8 2017, 1:11 PM · MacOS, gpgme, Bug Report
justus added a comment to T2910: gpgme 1.8 build failure: strdup undeclared on MacOSX Sierra.

libksba fixed in 561d03a008150c201ece22b29c97b24a1f6bf590.

Mar 8 2017, 1:05 PM · MacOS, gpgme, Bug Report
justus added a comment to T2910: gpgme 1.8 build failure: strdup undeclared on MacOSX Sierra.

libassuan fixed in b26b73d04bff10852382113ae361ea5726661510.

Mar 8 2017, 12:30 PM · MacOS, gpgme, Bug Report
justus added a comment to T2910: gpgme 1.8 build failure: strdup undeclared on MacOSX Sierra.

libgpg-error fixed in 5e51b642f747547c737a7abbc37e65b0f630d188.

Mar 8 2017, 11:45 AM · MacOS, gpgme, Bug Report

Mar 7 2017

gniibe added a project to T2981: struct ucred usage needs ucred.h on Solaris: In Progress.
Mar 7 2017, 6:25 AM · In Progress, Bug Report, gnupg

Mar 1 2017

werner added a project to T2381: Add more support for profiles in gpgconf: In Progress.
Mar 1 2017, 9:09 PM · In Progress, gnupg (gpg22), gnupg, Feature Request
werner removed a project from T2381: Add more support for profiles in gpgconf: Restricted Project.
Mar 1 2017, 9:09 PM · In Progress, gnupg (gpg22), gnupg, Feature Request
justus added a comment to T2910: gpgme 1.8 build failure: strdup undeclared on MacOSX Sierra.

I addressed this for GPGME in 60273e8b2c11d42215a5707bc55e3e0d8f350e07 but
apparently forgot to mention that here.

I'll keep the bug open until I fixed this in all packages.

Mar 1 2017, 4:53 PM · MacOS, gpgme, Bug Report
justus added a project to T2910: gpgme 1.8 build failure: strdup undeclared on MacOSX Sierra: In Progress.
Mar 1 2017, 4:53 PM · MacOS, gpgme, Bug Report
werner added a comment to T2973: --export-options export-minimal does not work with --export-secret-keys.

Fix pushed. Thanks.

Mar 1 2017, 2:45 PM · Bug Report, gnupg
werner closed T2973: --export-options export-minimal does not work with --export-secret-keys as Resolved.
Mar 1 2017, 2:45 PM · Bug Report, gnupg
werner added a project to T2973: --export-options export-minimal does not work with --export-secret-keys: In Progress.
Mar 1 2017, 2:30 PM · Bug Report, gnupg

Feb 13 2017

werner added a comment to T2935: use-tor should have a third possible value, "if available".

Using a socket conenction would require new code. We use the standard ports
instead. Sometimes the socks5 code (and I assume also the Unix domain socket
code) takes some time to figure out whether Tor is actually running, Thus this
is not done at every request.

Doing a check for every request would also require a lot of new code because we
need to restart a connection attempt at a higher layer. Similar to HTTP 301
handling.

Feb 13 2017, 4:19 PM · gnupg (gpg22), In Progress, Feature Request, dirmngr
werner added a comment to T2943: gpg should issue a warning when it is run without a command.

I implemented that but then I found this in the man page:

  This command differs from the default operation, as it never writes
  to the filename which is included in the file and it rejects files
  that don't begin with an encrypted message.

Thus decryption is the default operation. The problem is that the
code also tries to do other things if it does not find encrypted data.
Note that the "never writes to the filename which is included in the
file" is wrong because gpg does not do that by default.

Feb 13 2017, 3:04 PM · Bug Report, gnupg
werner added a comment to T2943: gpg should issue a warning when it is run without a command.

Good idea.
The "This looks like foo" might be a bit complicated but the warning is easy to
implement. I will add that one immediately.

Feb 13 2017, 1:05 PM · Bug Report, gnupg
werner added a project to T2943: gpg should issue a warning when it is run without a command: In Progress.
Feb 13 2017, 1:05 PM · Bug Report, gnupg

Feb 4 2017

dkg added a comment to T2935: use-tor should have a third possible value, "if available".

Thanks for this work (and sorry to have just blindly/wrongly assumed that
--no-use-tor already existed without checking it).

On modern debian systems, the default tor daemon will always be listening on
unix domain socket /run/tor/socks. So a simple attempt to connect to that
socket should be sufficient -- it should fail immediately if the socket isn't
present or if no one is listening on it.

This seems cheap and fast enough to be able to do it on every query to me,
rather than introducing additional runtime state to dirmngr. just try to
connect, and if it doesn't work, fall back to a normal connection (you'd want to
do that anyway in case the tor daemon goes away after dirmngr had been launched).

Feb 4 2017, 2:56 AM · gnupg (gpg22), In Progress, Feature Request, dirmngr

Feb 1 2017

werner added a project to T2935: use-tor should have a third possible value, "if available": In Progress.
Feb 1 2017, 6:02 PM · gnupg (gpg22), In Progress, Feature Request, dirmngr
werner added projects to T2934: Serpent-256 unavailable in 2.0.30: In Progress, gnupg (gpg20).
Feb 1 2017, 5:08 PM · gnupg (gpg20), Bug Report, In Progress, gnupg

Jan 23 2017

aheinecke added a project to T2881: Gpgme gpgconf changes are sometimes not made: In Progress.
Jan 23 2017, 12:14 PM · gpgme, Bug Report, Windows 32, Windows

Jan 2 2017

werner added a project to T2889: gnupg/dirmngr 2.1.17 fails on all keyserver operations: In Progress.
Jan 2 2017, 4:03 PM · Bug Report, gnupg

Dec 16 2016

justus closed T2700: Clean up the command line interface (avoid abbreviated --long-options, consistency) as Resolved.
Dec 16 2016, 2:46 PM · gnupg, Feature Request, gnupg (gpg22)
justus added a comment to T2700: Clean up the command line interface (avoid abbreviated --long-options, consistency).

I went over the other programs, and did not see any glaring problems. I have
decided to ignore the socket configuration for now. I'm quite happy with the
changes, but feel free to reopen this bug.

Dec 16 2016, 2:46 PM · gnupg, Feature Request, gnupg (gpg22)

Dec 15 2016

justus added a project to T2700: Clean up the command line interface (avoid abbreviated --long-options, consistency): In Progress.
Dec 15 2016, 5:27 PM · gnupg, Feature Request, gnupg (gpg22)

Dec 7 2016

werner added a comment to T2857: gpg-agent crashes regularly, out of core in secure memory allocations.

Backported to LIBGCRYPT-1-7-BRANCH

Dec 7 2016, 5:39 PM · gnupg (gpg22), Bug Report, gnupg, gpgagent
werner added a comment to T2857: gpg-agent crashes regularly, out of core in secure memory allocations.

I have now pushed a change to Libgcrypt master to implement auto-extending of
secre memory pools. Commit b6870cf but there are two cother commits which this
is based upon. My test shows that I can now decrypt a message encrypted to the
test-hugekey.key.

I will port this back to Libgcrypt 1.7.

Dec 7 2016, 5:07 PM · gnupg (gpg22), Bug Report, gnupg, gpgagent

Dec 6 2016

werner added a project to T2857: gpg-agent crashes regularly, out of core in secure memory allocations: In Progress.
Dec 6 2016, 5:50 PM · gnupg (gpg22), Bug Report, gnupg, gpgagent

Nov 29 2016

werner added a project to T2677: enable-special-filenames does not work with --output: Unreleased.
Nov 29 2016, 5:03 PM · Bug Report, gnupg
werner added a comment to T2677: enable-special-filenames does not work with --output.

commit a5910e00ace882b8a17169faf4607163ab454af9 should fix that. Will go into
2.1.17.

Nov 29 2016, 5:03 PM · Bug Report, gnupg
werner closed T2677: enable-special-filenames does not work with --output as Resolved.
Nov 29 2016, 5:03 PM · Bug Report, gnupg

Nov 15 2016

werner added a project to T2825: WKS: Encrypt submission / confirmation also with the users key: Unreleased.
Nov 15 2016, 10:29 AM · gnupg, Feature Request
werner closed T2825: WKS: Encrypt submission / confirmation also with the users key as Resolved.
Nov 15 2016, 10:29 AM · gnupg, Feature Request

Nov 4 2016

werner added a project to T2825: WKS: Encrypt submission / confirmation also with the users key: In Progress.
Nov 4 2016, 4:50 PM · gnupg, Feature Request

Oct 16 2016

hanno reopened T2694: insecure links on gnupg webpage (gnupg.org) that could be https as "Open".
Oct 16 2016, 2:33 PM · In Progress, Feature Request
hanno added a project to T2694: insecure links on gnupg webpage (gnupg.org) that could be https: In Progress.
Oct 16 2016, 2:33 PM · In Progress, Feature Request

Oct 10 2016

justus closed T2744: Lack of HTTPS issues on git.gnupg.org as Resolved.
Oct 10 2016, 3:12 PM · gpgweb, Bug Report
justus added projects to T2744: Lack of HTTPS issues on git.gnupg.org: In Progress, gpgweb.
Oct 10 2016, 2:29 PM · gpgweb, Bug Report

Sep 22 2016

werner added a comment to T1415: gpgme_cancel() does not stop gpg process from finishing asynchronous call.

I pushed Ueno's patches for gpgme. In particular
dee56820cabde60c43c9bf8281b8d411cb2ad644

Sep 22 2016, 9:57 AM · gpgme, Bug Report, Debian

Sep 21 2016

werner added a comment to T1415: gpgme_cancel() does not stop gpg process from finishing asynchronous call.

Oops; forgot to add the fix to 1.7.0

Sep 21 2016, 9:46 PM · gpgme, Bug Report, Debian

Sep 19 2016

SandeepReddy496 added a project to T2691: how to resolve the issue gnome keyring manager hijacked the gnupg agent in redhat linux: In Progress.
Sep 19 2016, 8:49 AM · Support, gnupg

Sep 14 2016

werner added a comment to T2226: Add sha-256 checksums to swdb.lst.

This has meanwhile been done.

Sep 14 2016, 1:20 PM · gnupg, Feature Request

Sep 13 2016

werner added a project to T2677: enable-special-filenames does not work with --output: In Progress.
Sep 13 2016, 8:33 AM · Bug Report, gnupg

Aug 12 2016

werner removed a project from T2360: Add support for TOFU in GpgME: gnupg (gpg21).
Aug 12 2016, 11:14 AM · gnupg (gpg22), gpgme, Feature Request
werner added a project to T2360: Add support for TOFU in GpgME: gnupg (gpg22).
Aug 12 2016, 11:14 AM · gnupg (gpg22), gpgme, Feature Request

Jul 8 2016

priyanka013 added projects to T2410: Official PHone NUmber for Quickbooks PAYROLL((1+877+778+8714))^^^Quic kbooks PAYROLL technical support phone number: In Progress, gpa, Bug Report.
Jul 8 2016, 9:15 PM · Trash, Bug Report

Jun 21 2016

werner added a comment to T2314: Improve detection of gpgme_data_identify.

Binary PGP messages are now detected. Not well tested but the run-verify test
tool can help to check the feature.

Jun 21 2016, 4:25 PM · gpgme, Feature Request, gpg4win
werner added a project to T2314: Improve detection of gpgme_data_identify: In Progress.
Jun 21 2016, 4:25 PM · gpgme, Feature Request, gpg4win

Jun 15 2016

werner closed T2371: gnupg 2.1, gpg-agent crashing on 'assertion failed' (OS X, Homebrew) as Resolved.
Jun 15 2016, 10:32 PM · gpgrt, Bug Report
werner added a comment to T2371: gnupg 2.1, gpg-agent crashing on 'assertion failed' (OS X, Homebrew).

1.23 has meanwhile been released.

Jun 15 2016, 10:32 PM · gpgrt, Bug Report
werner added a project to T2257: libgpg-error test hangs due to stream locking race condition: Unreleased.
Jun 15 2016, 3:02 PM · Bug Report, gpgrt
werner added a comment to T2257: libgpg-error test hangs due to stream locking race condition.

Fixed with commit 7ed1502 for 1.23. I used your method.

Jun 15 2016, 3:02 PM · Bug Report, gpgrt
werner closed T2257: libgpg-error test hangs due to stream locking race condition as Resolved.
Jun 15 2016, 3:02 PM · Bug Report, gpgrt
werner added a comment to T2371: gnupg 2.1, gpg-agent crashing on 'assertion failed' (OS X, Homebrew).

I applied your patch (commit 28fd0ab) and will do a new release soon.

Jun 15 2016, 11:53 AM · gpgrt, Bug Report
werner added a project to T2371: gnupg 2.1, gpg-agent crashing on 'assertion failed' (OS X, Homebrew): In Progress.
Jun 15 2016, 11:42 AM · gpgrt, Bug Report

Jun 9 2016

gniibe added a comment to T2374: exporting public key fails with "Ohhhh jeeee: Can't encode length=294 in a 2 byte header!".

It was fixed in db1ecc8212defdd183abbb6b1407fcc8d2dc9552 for 2.1.
In 2.1, HDRLEN=0 for all callers, so, there will be no same "Ohhhh jeeee" any more.

In 1.4 and 2.0, HDRLEN is used as a hint. There is no need to change 1.4 and
2.0. Detail is described in:
https://lists.gnupg.org/pipermail/gnupg-devel/2016-June/031178.html

Jun 9 2016, 12:56 AM · Bug Report, Duplicate, gnupg
gniibe closed T2374: exporting public key fails with "Ohhhh jeeee: Can't encode length=294 in a 2 byte header!" as Resolved.
Jun 9 2016, 12:56 AM · Bug Report, Duplicate, gnupg
gniibe added a project to T2374: exporting public key fails with "Ohhhh jeeee: Can't encode length=294 in a 2 byte header!": Unreleased.
Jun 9 2016, 12:56 AM · Bug Report, Duplicate, gnupg

Jun 8 2016

werner added a project to T2374: exporting public key fails with "Ohhhh jeeee: Can't encode length=294 in a 2 byte header!": In Progress.
Jun 8 2016, 6:51 PM · Bug Report, Duplicate, gnupg

Jun 6 2016

werner added a project to T2379: default to --with-fingerprint, introduce --without-fingerprint: In Progress.
Jun 6 2016, 4:06 PM · gnupg, Feature Request

Jun 2 2016

werner reassigned T1506: New key generation usability enhancements from justus to gnupg-hackers.
Jun 2 2016, 11:17 PM · In Progress, gnupg, Feature Request
werner added a comment to T1506: New key generation usability enhancements.

Not really making it simpler but --quick-gen-key can now take an expiration date.

Let's keep this bug open to track other improvements.

Jun 2 2016, 11:17 PM · In Progress, gnupg, Feature Request
werner updated subscribers of T1506: New key generation usability enhancements.
Jun 2 2016, 11:17 PM · In Progress, gnupg, Feature Request
werner added a comment to T1506: New key generation usability enhancements.

We also have --quick-addkey now.

Jun 2 2016, 4:13 PM · In Progress, gnupg, Feature Request
werner added a project to T2064: please allow unattended secret key deletion: In Progress.
Jun 2 2016, 4:08 PM · gnupg, Feature Request

May 20 2016

werner added a project to T2360: Add support for TOFU in GpgME: In Progress.
May 20 2016, 1:37 PM · gnupg (gpg22), gpgme, Feature Request

May 19 2016

werner added a project to T2361: not-resolved status needs to be include in the seartch: In Progress.
May 19 2016, 10:34 AM · In Progress, Bug Report
werner added a comment to T2361: not-resolved status needs to be include in the seartch.

Done for new searches.

May 19 2016, 10:34 AM · In Progress, Bug Report

May 17 2016

justus added a comment to T2264: Merging pyme as language binding in gpgme master.

Fixed in 4711a1e1.

May 17 2016, 4:43 PM · gpgme, Feature Request

May 12 2016

justus added a comment to T2264: Merging pyme as language binding in gpgme master.

Quoting Ben McGinnes (2016-05-11 19:54:21)

On Wed, May 11, 2016 at 12:44:00PM +0000, Justus Winter via BTS wrote:

Justus Winter <justus@g10code.com> added the comment:

I have integrated the Python bindings into our build system. See branch
'justus/pyme3'.

Open issues:

  • (API) Change the name of the Python module. Currently it is named 'pyme',

shouldn't we use 'gpgme' instead?

No, simply because other (abandoned) attempts at writing wrappers for
GPGME already exist in the Python ecosystem. If we rename a module to
match the name of an existing one this will break things somewhere.
It also makes us no different from poor Isis Lovecruft who selected
the name gnupg for her fork of python-gnupg, but the original was
always imported as just gnupg so when she increased the version number
of her fork she broke a *lot* of things in other people's code.

That's also why the entirely new thing I've called GPyGME, not just to
play word games with Pygmy, but also because the name is not used by
any existing Python module.

May 12 2016, 11:34 AM · gpgme, Feature Request

May 11 2016

justus added a project to T2264: Merging pyme as language binding in gpgme master: In Progress.
May 11 2016, 2:44 PM · gpgme, Feature Request
werner added a project to T2350: Reading uninitialized memory in libksba: In Progress.
May 11 2016, 12:44 PM · In Progress, Bug Report, libksba

May 3 2016

werner lowered the priority of T2338: gpa "no keys found" from Unbreak Now! to Normal.
May 3 2016, 12:50 PM · Support, Windows 32, Windows, Bug Report, gpa
werner added projects to T2338: gpa "no keys found": Windows, Windows 32.
May 3 2016, 12:50 PM · Support, Windows 32, Windows, Bug Report, gpa
werner added a comment to T2338: gpa "no keys found".

Please explain the version number you entered and from where you downloaded GPA

May 3 2016, 12:50 PM · Support, Windows 32, Windows, Bug Report, gpa

Apr 27 2016

kiwcam16 set Version to GnuPG v2mQENBFb on T2338: gpa "no keys found".
Apr 27 2016, 9:29 PM · Support, Windows 32, Windows, Bug Report, gpa
kiwcam16 set Due Date to Apr 28 2016, 2:00 AM on T2338: gpa "no keys found".
Apr 27 2016, 9:29 PM · Support, Windows 32, Windows, Bug Report, gpa
kiwcam16 added a comment to T2338: gpa "no keys found".

Apr 27 2016, 9:29 PM · Support, Windows 32, Windows, Bug Report, gpa
kiwcam16 added projects to T2338: gpa "no keys found": In Progress, gpa, Bug Report.
Apr 27 2016, 9:29 PM · Support, Windows 32, Windows, Bug Report, gpa

Apr 5 2016

werner added a comment to T1506: New key generation usability enhancements.

And there is also the new

  $ gpg --quick-gen-key "Otto Normalverbraucher <otto@example.invalid>"
  About to create a key for:
      "Otto Normalverbraucher <otto@example.invalid>"

  Continue? (Y/n)

which avoids almost all questions. Whether to set an expiration date by default
is a different question and is connected on how a key can be revoked.

Apr 5 2016, 6:03 PM · In Progress, gnupg, Feature Request
justus added a project to T1506: New key generation usability enhancements: In Progress.
Apr 5 2016, 4:36 PM · In Progress, gnupg, Feature Request
justus added a comment to T1506: New key generation usability enhancements.

Thanks for your suggestions. We have simplified the key generation process, do
you mind to re-evaluate it?

% gpg2 --gen-key
gpg: WARNING: unsafe permissions on homedir
'/home/teythoon/repos/g10/local/gnupghome'
gpg (GnuPG) 2.1.12-beta119; Copyright (C) 2016 Free Software Foundation, Inc.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

gpg: NOTE: THIS IS A DEVELOPMENT VERSION!
gpg: It is only intended for test purposes and should NOT be
gpg: used in a production environment or with production keys!
Note: Use "gpg2 --full-gen-key" for a full featured key generation dialog.

GnuPG needs to construct a user ID to identify your key.

Real name: Otto Normalverbraucher
Email address: otto@example.invalid
You selected this USER-ID:

    "Otto Normalverbraucher <otto@example.invalid>"

Change (N)ame, (E)mail, or (O)kay/(Q)uit? o
We need to generate a lot of random bytes. It is a good idea to perform
some other action (type on the keyboard, move the mouse, utilize the
disks) during the prime generation; this gives the random number
generator a better chance to gain enough entropy.
We need to generate a lot of random bytes. It is a good idea to perform
some other action (type on the keyboard, move the mouse, utilize the
disks) during the prime generation; this gives the random number
generator a better chance to gain enough entropy.
gpg: key 81F88C88 marked as ultimately trusted
gpg: revocation certificate stored as
'/home/teythoon/repos/g10/local/gnupghome/openpgp-revocs.d/5FB9D2A5255C94E3D06B5B563C8167E481F88C88.rev'
public and secret key created and signed.

gpg: checking the trustdb
gpg: public key of ultimately trusted key 909DD699 not found
gpg: public key of ultimately trusted key 5F2FA2F6 not found
gpg: public key of ultimately trusted key 5B81A1FD not found
gpg: marginals needed: 3 completes needed: 1 trust model: PGP
gpg: depth: 0 valid: 5 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 5u
pub rsa2048/81F88C88 2016-04-05 [S]

Key fingerprint = 5FB9 D2A5 255C 94E3 D06B  5B56 3C81 67E4 81F8 8C88

uid [ultimate] Otto Normalverbraucher <otto@example.invalid>
sub rsa2048/3E5BDFAF 2016-04-05 []

Apr 5 2016, 4:36 PM · In Progress, gnupg, Feature Request

Mar 22 2016

werner added a comment to T1736: FIPS 186-4 compliance patches.

Meanwhile I also commited the Fedora patch.

Mar 22 2016, 5:58 PM · libgcrypt, Feature Request

Mar 18 2016

civ added a comment to T1736: FIPS 186-4 compliance patches.

Great! Thank you, Werner.

Mar 18 2016, 9:05 PM · libgcrypt, Feature Request
werner added a comment to T1815: whirlpool.c requires u64 type.

We now require a 64 bit integer type for >= 1.7 (commit 897ccd2)

Mar 18 2016, 7:05 PM · Bug Report, libgcrypt
werner closed T1815: whirlpool.c requires u64 type as Resolved.
Mar 18 2016, 7:05 PM · Bug Report, libgcrypt
werner updated subscribers of T1736: FIPS 186-4 compliance patches.
Mar 18 2016, 6:02 PM · libgcrypt, Feature Request
werner added a project to T1736: FIPS 186-4 compliance patches: In Progress.
Mar 18 2016, 6:01 PM · libgcrypt, Feature Request

Mar 4 2016

justus closed T2272: Issue with documentation as Resolved.
Mar 4 2016, 12:30 PM · Bug Report, gpgweb, Documentation

Mar 3 2016

justus added a comment to T2272: Issue with documentation.

Fixed in c7cb4008. This will take effect next the web site is published.

Mar 3 2016, 4:14 PM · Bug Report, gpgweb, Documentation
justus added a project to T2272: Issue with documentation: In Progress.
Mar 3 2016, 3:02 PM · Bug Report, gpgweb, Documentation

Feb 24 2016

aheinecke added a comment to T2135: Keyring locking on Windows broken.

I've tested it with pubring now too and it works.
Justus mentioned in jabber that he noticed some more errors after this patch in
the scheme tests. I've not tried them.

Feb 24 2016, 3:39 PM · Bug Report, gpg4win, Windows, gnupg, Windows 32
werner lowered the priority of T2135: Keyring locking on Windows broken from High to Normal.
Feb 24 2016, 2:24 PM · Bug Report, gpg4win, Windows, gnupg, Windows 32
werner added a comment to T2135: Keyring locking on Windows broken.

Okay, so I can backport this to 2.0 ?

Feb 24 2016, 2:24 PM · Bug Report, gpg4win, Windows, gnupg, Windows 32