Page MenuHome GnuPG
Feed Advanced Search

Mar 18 2016

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

Well it took quite some time but I have now commited all 10 patches to master.
I have a fixed a few things (mostly style).

I have not yet added the Fedora patch. I'll ask Tomáš whether he can send me a
signed off patch.

Mar 18 2016, 6:01 PM · libgcrypt, Feature Request
werner added a comment to T1701: SP 800-90A deterministic Random Bit Generator.

Applied to master will go into 1.7.

Mar 18 2016, 8:50 AM · patch, libgcrypt, Feature Request
werner closed T1701: SP 800-90A deterministic Random Bit Generator as Resolved.
Mar 18 2016, 8:50 AM · patch, libgcrypt, Feature Request

Mar 17 2016

werner added a comment to T2233: Missing feedback when sending key to key server.

There won't be any output if the keyserver responds with success. In other
cases you will see an error message (modulo the resolved bug T1832).
However, even if the keyserver responded with OK, there is no guarantee that the
keyserver worked as expected or that it properly syncs with other keyservers.

To make sure that you key is really on the keyservers, you should ask an
arbitrary keyserver for your key after giving it a few days to sync up.

Mar 17 2016, 3:52 PM · gnupg, Feature Request
werner added a comment to T2280: Wish for a new keygen API.

The actual plan is to restrict the wauys how gpgme can create keys. In the
future there will be only one way to create a key and no way to select an
algorithm. Those who want to use non-default algorithm should resort to the
command line and the --expert option.

Mar 17 2016, 3:22 PM · gnupg, gnupg (gpg21), Feature Request

Mar 14 2016

werner removed a project from T2273: Using GPA and Kleopatra in gpg4win does not allow you to change cipher-algo: Bug Report.
Mar 14 2016, 1:32 PM · gnupg, Bug Report, S/MIME
werner added projects to T2273: Using GPA and Kleopatra in gpg4win does not allow you to change cipher-algo: Feature Request, Won't Fix.
Mar 14 2016, 1:32 PM · gnupg, Bug Report, S/MIME

Mar 13 2016

sa added a comment to T1967: GnuPG should select a key for signing without trying to use missing subkeys.

Updated patch to check that the requested key usage is SIG before checking for a
secret key.

Mar 13 2016, 3:09 PM · gnupg (gpg22), Feature Request
sa added a comment to T1967: GnuPG should select a key for signing without trying to use missing subkeys.

D296: 793_sign-fix.patch

Mar 13 2016, 3:09 PM · gnupg (gpg22), Feature Request

Mar 10 2016

aheinecke added projects to T2280: Wish for a new keygen API: Feature Request, gnupg (gpg21), gnupg.
Mar 10 2016, 8:13 PM · gnupg, gnupg (gpg21), Feature Request

Mar 1 2016

neal closed T2252: Provide --alternate-keyserver to avoid "No valid OpenPGP data found" response as Resolved.
Mar 1 2016, 11:53 AM · gnupg, OpenPGP, Feature Request
neal added a comment to T2252: Provide --alternate-keyserver to avoid "No valid OpenPGP data found" response.

Marking as resolved since this is available in 2.1 and we are not going to
backport this to 1.4 or 2.0. Thanks.

Mar 1 2016, 11:53 AM · gnupg, OpenPGP, Feature Request
aheinecke added projects to T2267: Fix "Invalid Parameter passed to C runtime function" warnings on Windows: Feature Request, gpgagent, gnupg.
Mar 1 2016, 9:49 AM · Windows 32, Windows, gnupg, gpgagent, Feature Request

Feb 26 2016

aheinecke added a comment to T2227: Sign GpgOL to support group deployments.

Reading about
http://www.heise.de/security/meldung/Erpressungs-Trojaner-verschluesselt-mit-PGP-3116677.html

made me think that signing all binaries may not be the best idea. For our
installer we can rule out that it does something malicious as we control what it
does. So signing it is fine. Same goes probably for GpgOL etc.

But the actual encryption stuff (libgcrypt / gnupg) can, of course, be used for
malicious purposes. So there would be the potential for malware using binaries
signed by us. This could hurt our reputation. (technically in terms of Windows
Code Signing Reputation or Anti Virus software)

At least something we should keep in mind while thinking about changes to what
we sign.

Feb 26 2016, 4:20 PM · gpgol, Feature Request
ueno added a comment to T2263: use FD passing instead of /tmp/emacs$UID/pinentry.

I have done some experiment with it, and it works (though I had
to add ASSUAN_*_FDPASSING flags to a couple of places in gnupg).
However, I think I still need some more opinions to make it a
reviewable state.

First, to make all the things work, gpg would need a new
option (or an envvar?) to tell the FD number. Naively, it could
be named as --emacs-fd, which only works if INSIDE_EMACS is set.
However, it might be too specific, and sounds over-engineering to
me.

Instead, we could add a more generic option, say, --pinentry-fd.
With that option, any pinentry could talk to the caller through
the FD with the Assuan protocol. For security, the effect of the
option shall be restricted only when --pinentry-mode=loopback is
set and working.

In that case, it's tempting to make gpg-agent directly talk to
the FD, instead of spawning pinentry. However, it cannot take
advantage of pinentry's libsecret support and the diversion to
other pinentries (GTK+, ...). Also, it might be a similar
concept of --pinentry-program, which I proposed and was rejected.

What do you think?

Actually, I'm not sure about the current recommendation on the
custom passphrase input options. Given the recent bug fixes,
could --pinentry-mode=loopback be publicly promoted? If so,
I'm happy to withdraw this (and perhaps INSIDE_EMACS stuff) and
add a hack to use --pinentry-mode=loopback.

Feb 26 2016, 10:09 AM · pinentry, Feature Request

Feb 25 2016

neal added a comment to T2263: use FD passing instead of /tmp/emacs$UID/pinentry.

I think this is reasonable. If you want to implement it, I'll review the
patches. Thanks.

Feb 25 2016, 11:17 AM · pinentry, Feature Request

Feb 24 2016

sa added a comment to T1967: GnuPG should select a key for signing without trying to use missing subkeys.

Attached a patch to call agent_probe_secret_key() during finish_lookup().

This partially solves the problem by not trying to use subkeys that have no
secret key present. This does not unexpectedly change the existing behaviour
because GnuPG will currently return an error if the automatically selected
secret key is not present.

It does not solve the issue of having multiple potential signing subkeys on
different smartcards, because these are always considered to be present (if the
subkey has been associated with a smartcard).

Feb 24 2016, 9:39 PM · gnupg (gpg22), Feature Request
sa added a comment to T1967: GnuPG should select a key for signing without trying to use missing subkeys.

D297: 785_sign-fix.patch

Feb 24 2016, 9:39 PM · gnupg (gpg22), Feature Request
aheinecke added a comment to T2254: Add FLTK frontend for pinentry (for weak computers).

I wonder if we could / should use this as a replacement for Pinentry-w32?

Pinentry-w32 should die and FLTK could be lightweight enough that werner would
include it in gnupg-w32?

Feb 24 2016, 2:25 PM · pinentry, Feature Request
ueno added a comment to T2263: use FD passing instead of /tmp/emacs$UID/pinentry.

Does this mean that pinentry-emacs will only work when an emacs instance calls

gpg?

Yes, it is the intention of this proposal.

Does pinentry-emacs need to support the case that a program other than

emacs calls gpg?

I don't think it is worth being supported. It would be rather confusing if a
GUI program internally using gpg asked passphrases from Emacs window.

Feb 24 2016, 3:09 AM · pinentry, Feature Request

Feb 23 2016

neal added a comment to T2254: Add FLTK frontend for pinentry (for weak computers).

I tend to agree with Werner: adding another pinentry program increases our
maintenance burden, but the new pinentry doesn't add any convincing features,
AFAIK. If there are some significant benefits, please add them. Otherwise, I
think I'll change this issue to wont-fix. Sorry. Nevertheless, thank you for
your contribution! I hope you'll find another way to contribute.

Feb 23 2016, 9:33 PM · pinentry, Feature Request
neal added a comment to T2263: use FD passing instead of /tmp/emacs$UID/pinentry.

Does this mean that pinentry-emacs will only work when an emacs instance calls
gpg? Does pinentry-emacs need to support the case that a program other than
emacs calls gpg?

Feb 23 2016, 9:30 PM · pinentry, Feature Request
aheinecke added projects to T2264: Merging pyme as language binding in gpgme master: Feature Request, gpgme.
Feb 23 2016, 10:21 AM · gpgme, Feature Request
aheinecke updated subscribers of T2264: Merging pyme as language binding in gpgme master.
Feb 23 2016, 10:21 AM · gpgme, Feature Request
ueno set Version to 0.9.7 on T2263: use FD passing instead of /tmp/emacs$UID/pinentry.
Feb 23 2016, 8:29 AM · pinentry, Feature Request
ueno added projects to T2263: use FD passing instead of /tmp/emacs$UID/pinentry: Feature Request, pinentry.
Feb 23 2016, 8:29 AM · pinentry, Feature Request

Feb 22 2016

werner added a comment to T2254: Add FLTK frontend for pinentry (for weak computers).

Given that FLTK is a C++ library and we already have a Qt frontend, I am not
sure whether adding this is a good idea. The problem is the usual ABI break due
to compiler or library changes. We already had our problems in the past with
the two Qt versions we supported. Adding FLTK would introduce those problems again.

Why are Qt or GTK+ not sufficient for small boxes?

Feb 22 2016, 9:53 AM · pinentry, Feature Request

Feb 16 2016

neal added a comment to T2250: OpenPGP ASCII armor should be more robust.

I've pushed this.

Feb 16 2016, 4:45 PM · gnupg, Feature Request
neal closed T2250: OpenPGP ASCII armor should be more robust as Resolved.
Feb 16 2016, 4:45 PM · gnupg, Feature Request
madrat added a comment to T2254: Add FLTK frontend for pinentry (for weak computers).

"There are not many comments."
The code should comment itself, and /* some comment for block */ really need
only for description the strongly non-obvious actions - like complex math,
optimization (with answer why optimize here) or factorization algorithm O(1) :-).

Feb 16 2016, 9:31 AM · pinentry, Feature Request
madrat added a comment to T2254: Add FLTK frontend for pinentry (for weak computers).

Dear Neal, I thank you for answer.

This issue's the main goal is getting an answer to a question - Do you plan
support FLTK. I suppose that it may be closed with comment "not need this
toolkit" - so I do not format according to the GNU coding standards - There are
many contentious issues about the format code - 80 chars per line is more then
enough for assembler, but for C++ with templates - not sure.
Your code is your rules, so If you plan to accept FLTK support - I fix all notes.

"Using email"
email "madrat@users.noreply.github.com" is also my email, which I use in
github.com and because I use local git, it will be inserted automatically.

"the rest of the code has a fair number of violations"
For my studies and knowledge - can you post sample of violation?

Feb 16 2016, 9:21 AM · pinentry, Feature Request
dkg added a comment to T2134: iconv.dll is still a problem.

fwiw, i've now got most of GnuPG cross-building for win32 from a debian platform
using win-iconv. win-iconv doesn't seem to be a terrible choice to me.

Feb 16 2016, 8:10 AM · Feature Request, gnupg

Feb 15 2016

werner added a comment to T2250: OpenPGP ASCII armor should be more robust.

Great

Feb 15 2016, 8:50 PM · gnupg, Feature Request
werner added a comment to T2252: Provide --alternate-keyserver to avoid "No valid OpenPGP data found" response.

I guess you are reporting for GnuPG 2.0 or 1.4.
We already implemented your suggestion in 2.1.

Feb 15 2016, 8:44 PM · gnupg, OpenPGP, Feature Request
justus added a comment to T2250: OpenPGP ASCII armor should be more robust.

Yes, that patch works for me.

Feb 15 2016, 11:33 AM · gnupg, Feature Request

Feb 14 2016

krejzi added a comment to T2244: pinentry not saving/using saved GPG key password.

This is Linux From Scratch, pinentry 0.9.7, pinentry -> pinentry-gtk-2, with
fallback to ncurses. No other pinentry program works.

This is KDE environment, Qt pinentry crashes. I can confirm that there's a
keyring password in the Login keyring, which is the only keyring I use.

Nonetheless, the password won't be asked again while the gpg-agent is running,
the password was entered at least once, and the "Remember password (or
whatever)" box was checked.

As soon as gpg-agent is terminated or a session restarted (which also terminates
gpg-agent), next time I try to use the pgp key, I get asked for its passphrase.

Feb 14 2016, 5:00 PM · pinentry, Feature Request
neal added a comment to T2244: pinentry not saving/using saved GPG key password.

What distribution are you using? What pinentry program? Can you take a look
using seahorse to make sure that your password is saved. Once it is saved, it
shouldn't be removed.

Feb 14 2016, 4:54 PM · pinentry, Feature Request
neal added a comment to T2250: OpenPGP ASCII armor should be more robust.

The following simple patch works for me and make check still passes. I think it
makes sense to apply this patch given that this workaround is no more
complicated than an existing workaround for something similar (immediately
preceding my change). Can you please test to make sure it works for you?

Feb 14 2016, 4:02 PM · gnupg, Feature Request
neal added a comment to T2250: OpenPGP ASCII armor should be more robust.

D351: 776_0001-gpg-Make-ASCII-armor-decoding-more-robust-to-encodin.patch

Feb 14 2016, 4:02 PM · gnupg, Feature Request
neal added a project to T2254: Add FLTK frontend for pinentry (for weak computers): pinentry.
Feb 14 2016, 3:24 PM · pinentry, Feature Request
neal updated subscribers of T2254: Add FLTK frontend for pinentry (for weak computers).

Thanks for your contribution! A few comments based on a quick skim of the code:

Why are you using the apparently invalid email address
"madrat@users.noreply.github.com" in the headers?

The code is not formatted according to the GNU coding standards (indentation
using tabs instead of 2 spaces; some lines are longer than 80 characters). I'm
not sure how important this is since the rest of the code has a fair number of
violations.

There are not many comments.

When commenting out large blocks of code (as you do in main.cxx), please use #if
0 ... #endif rather than using /* ... */.

@werner: Do we want to add support for FLTK? If so, I'll take a closer look at
this. My main concern is that this is another thing that we have to maintain
and I'm not sure the gtk pinentry is really just a burden for weak computers.

Feb 14 2016, 3:23 PM · pinentry, Feature Request
neal updated subscribers of T2254: Add FLTK frontend for pinentry (for weak computers).
Feb 14 2016, 3:23 PM · pinentry, Feature Request

Feb 12 2016

madrat added a comment to T2254: Add FLTK frontend for pinentry (for weak computers).

FL/fl_utf8.H in some distros is Fl/fl_utf8.h

Feb 12 2016, 10:10 PM · pinentry, Feature Request
madrat added a comment to T2254: Add FLTK frontend for pinentry (for weak computers).

D354: 774_fltk.patch

Feb 12 2016, 10:10 PM · pinentry, Feature Request
madrat added a comment to T2254: Add FLTK frontend for pinentry (for weak computers).

input field tests removed

Feb 12 2016, 9:55 PM · pinentry, Feature Request
madrat added a comment to T2254: Add FLTK frontend for pinentry (for weak computers).

D355: 773_fltk.patch

Feb 12 2016, 9:55 PM · pinentry, Feature Request
madrat added a comment to T2254: Add FLTK frontend for pinentry (for weak computers).

D356: 772_fltk.patch

Feb 12 2016, 9:44 PM · pinentry, Feature Request
madrat added a comment to T2254: Add FLTK frontend for pinentry (for weak computers).

forget add resources

Feb 12 2016, 9:44 PM · pinentry, Feature Request
madrat added a comment to T2254: Add FLTK frontend for pinentry (for weak computers).

D357: 771_fltk.patch

Feb 12 2016, 6:02 PM · pinentry, Feature Request
madrat added a comment to T2254: Add FLTK frontend for pinentry (for weak computers).

Patch adds fltk support to pinentry

Feb 12 2016, 6:02 PM · pinentry, Feature Request
madrat set Version to git on T2254: Add FLTK frontend for pinentry (for weak computers).
Feb 12 2016, 5:17 PM · pinentry, Feature Request
madrat added a project to T2254: Add FLTK frontend for pinentry (for weak computers): Feature Request.
Feb 12 2016, 5:17 PM · pinentry, Feature Request
madrat added a comment to T2254: Add FLTK frontend for pinentry (for weak computers).

D358: 770_fltk.patch

Feb 12 2016, 5:17 PM · pinentry, Feature Request
uldis added a comment to T2251: Tests not working if build folder path longer than 81 character.

D352: 769_gnupg2-2.1.11_redirect_socket_for_tests.patch

Feb 12 2016, 5:05 PM · Bug Report, gnupg
uldis added a comment to T2251: Tests not working if build folder path longer than 81 character.

D353: 768_gnupg2-2.1.11_gpg_preset_passphrase_socket_redirect.patch

Feb 12 2016, 5:05 PM · Bug Report, gnupg
neal added a comment to T2250: OpenPGP ASCII armor should be more robust.

It seems like detecting and correcting this simple manging would be
straightforward to do and relatively self contained.

Feb 12 2016, 1:33 PM · gnupg, Feature Request
uldis added a comment to T2251: Tests not working if build folder path longer than 81 character.

My mistake. I was talking about gpg-preset-passphrase.
Redirect in gpg-agent works as expected.

Feb 12 2016, 10:10 AM · Bug Report, gnupg

Feb 11 2016

friendlydev added projects to T2252: Provide --alternate-keyserver to avoid "No valid OpenPGP data found" response: Feature Request, OpenPGP, gnupg.
Feb 11 2016, 6:50 PM · gnupg, OpenPGP, Feature Request
uldis set Version to 2.1.11 on T2251: Tests not working if build folder path longer than 81 character.
Feb 11 2016, 4:16 PM · Bug Report, gnupg
uldis added projects to T2251: Tests not working if build folder path longer than 81 character: Feature Request, gnupg.
Feb 11 2016, 4:16 PM · Bug Report, gnupg
justus set Version to 2.1.11 on T2250: OpenPGP ASCII armor should be more robust.
Feb 11 2016, 10:43 AM · gnupg, Feature Request
justus added projects to T2250: OpenPGP ASCII armor should be more robust: Feature Request, gnupg.
Feb 11 2016, 10:43 AM · gnupg, Feature Request

Feb 6 2016

krejzi set Version to 0.9.7 on T2244: pinentry not saving/using saved GPG key password.
Feb 6 2016, 5:45 PM · pinentry, Feature Request
krejzi added projects to T2244: pinentry not saving/using saved GPG key password: Feature Request, pinentry.
Feb 6 2016, 5:45 PM · pinentry, Feature Request

Feb 5 2016

dkg added a comment to T2134: iconv.dll is still a problem.

I'm also interested in this, since i want to make it possible to easily build a
win32 version of gpgv.exe on debian systems. This is possible without iconv at
all in 1.4.x, but i would rather we ship a gpgv from 2.1.x in the future.

Feb 5 2016, 4:38 PM · Feature Request, gnupg

Feb 3 2016

neal added a comment to T2178: GPA - key generation message.

Ideally, there would be a mini-game, perhaps, space invaders. As the user
plays, we automatically harvest entropy!

Feb 3 2016, 12:22 AM · gpa, Feature Request

Feb 2 2016

neal added a comment to T2241: Encrypt to all encryption subkeys.

Why is this a reasonable assumption? This proposal changes the way that GnuPG
has been working for years and will inevitably break someone's setup. It would
be much better for the receiver to use a non-critical notation to indicate the
desired behavior.

Feb 2 2016, 8:27 PM · gnupg, OpenPGP, Feature Request
werner added projects to T2241: Encrypt to all encryption subkeys: Feature Request, OpenPGP, gnupg.
Feb 2 2016, 4:01 PM · gnupg, OpenPGP, Feature Request

Feb 1 2016

werner added a comment to T2237: PGP5-GnuPG HOWTO link broken.

Thanks for the hint. I removed the entire section.

Feb 1 2016, 3:52 PM · gpgweb, Feature Request
werner closed T2237: PGP5-GnuPG HOWTO link broken as Resolved.
Feb 1 2016, 3:52 PM · gpgweb, Feature Request
werner added projects to T2233: Missing feedback when sending key to key server: Feature Request, gnupg.
Feb 1 2016, 9:11 AM · gnupg, Feature Request

Jan 31 2016

danielv added projects to T2237: PGP5-GnuPG HOWTO link broken: Feature Request, gpgweb.
Jan 31 2016, 11:17 PM · gpgweb, Feature Request

Jan 27 2016

werner added a comment to T2227: Sign GpgOL to support group deployments.

File? No hardware token?

Jan 27 2016, 12:40 PM · gpgol, Feature Request

Jan 25 2016

aheinecke added a comment to T2227: Sign GpgOL to support group deployments.

I would rather add a "Sign all binaries" installed by us capability to the
packaging process then a special case handling for GpgOL. Especially for the
Uninstaller this would make sense at it requires privileged execution and is
currently unsigned.

But this would mean that we either need to split up the packaging process to
first create the binaries and on a different system (with the code signing
certificate available) create the NSIS Packages.

Or that we expose the CodeSigning certificate to the build system, which
probably makes the most sense as the build system already should be a secured
environment and we only build / execute code which we verified.

I could imagine implementing this as a configure option --with-codesigning-cert
or something thats optional during the build and which you can provide with the
certificate file.

Jan 25 2016, 11:09 AM · gpgol, Feature Request
bernhard added projects to T2227: Sign GpgOL to support group deployments: Feature Request, gpgol.
Jan 25 2016, 10:58 AM · gpgol, Feature Request
bernhard updated subscribers of T2227: Sign GpgOL to support group deployments.
Jan 25 2016, 10:58 AM · gpgol, Feature Request
werner added a project to T2226: Add sha-256 checksums to swdb.lst: In Progress.
Jan 25 2016, 8:41 AM · gnupg, Feature Request

Jan 24 2016

werner renamed T2226: Add sha-256 checksums to swdb.lst from Add sha-256 checksuns to swdb.lst to Add sha-256 checksums to swdb.lst.
Jan 24 2016, 7:56 PM · gnupg, Feature Request
werner added projects to T2226: Add sha-256 checksums to swdb.lst: Feature Request, gnupg.
Jan 24 2016, 7:56 PM · gnupg, Feature Request

Jan 22 2016

werner closed T1724: documentation fixes for 2.1.0 as Resolved.
Jan 22 2016, 1:19 PM · Feature Request, gnupg
werner added a project to T2039: CRL issuingDistributionPoint support: gnupg.
Jan 22 2016, 1:17 PM · gnupg, Feature Request, dirmngr
werner closed T1754: dirmngr does not support pluggable keyserver helpers as Resolved.
Jan 22 2016, 1:12 PM · Feature Request, dirmngr
werner added a project to T1804: HKPS scheme support for Windows Installer: gnupg.
Jan 22 2016, 1:09 PM · Bug Report, gnupg, dirmngr
werner added a comment to T1147: Certificate serial number in hexadecimal base should be marked as such.

Fixed with commit 12c665b for gnupg 2.1.11.
The patch is different to not break the translations.

Jan 22 2016, 1:08 PM · Feature Request, dirmngr
werner closed T1147: Certificate serial number in hexadecimal base should be marked as such as Resolved.
Jan 22 2016, 1:08 PM · Feature Request, dirmngr

Jan 21 2016

werner added a comment to T1724: documentation fixes for 2.1.0.

The text now reads:

This is a revocation certificate for the OpenPGP key:

pub rsa2048/71201A64 2016-01-21

Key fingerprint = F6B8 598F 5E71 5104 D13C  1415 58D4 85FF 7120 1A64

uid baz@example.org

A revocation certificate is a kind of "kill switch" to publicly
declare that a key shall not anymore be used. It is not possible
to retract such a revocation certificate once it has been published.

Use it to revoke this key in case of a compromise or loss of
the secret key. However, if the secret key is still accessible,
it is better to generate a new revocation certificate and give
a reason for the revocation. For details see the description of
of the gpg command "--gen-revoke" in the GnuPG manual.

To avoid an accidental use of this file, a colon has been inserted
before the 5 dashes below. Remove this colon with a text editor

before importing and publishing this revocation certificate.

Jan 21 2016, 6:36 PM · Feature Request, gnupg
werner closed T2212: Wish for a gpgkey2ssh replacement as Resolved.
Jan 21 2016, 8:43 AM · ssh, gnupg, gnupg (gpg21), Feature Request
werner removed a project from T2212: Wish for a gpgkey2ssh replacement: Restricted Project.
Jan 21 2016, 8:43 AM · ssh, gnupg, gnupg (gpg21), Feature Request

Jan 20 2016

aheinecke added a comment to T2212: Wish for a gpgkey2ssh replacement.

Thanks, now this works as expected for me :-)

Jan 20 2016, 4:10 PM · ssh, gnupg, gnupg (gpg21), Feature Request
werner closed T2221: user role as Resolved.
Jan 20 2016, 11:31 AM · Feature Request
werner added a comment to T2221: user role.

Go ahead with T2071.

Jan 20 2016, 11:31 AM · Feature Request
werner closed T2222: no possibility to configure gpg-agent to set a pinentry timeout as Resolved.
Jan 20 2016, 11:29 AM · gnupg, Feature Request
werner added a comment to T2222: no possibility to configure gpg-agent to set a pinentry timeout.

[11:26:04] <gitbot> [git] GnuPG - branch master updated by Werner Koch:
4997433 agent: New option --pinentry-timeout

Jan 20 2016, 11:29 AM · gnupg, Feature Request
werner added a comment to T2222: no possibility to configure gpg-agent to set a pinentry timeout.

Good idea.

Jan 20 2016, 11:00 AM · gnupg, Feature Request
tim added projects to T2222: no possibility to configure gpg-agent to set a pinentry timeout: Feature Request, gnupg.
Jan 20 2016, 10:45 AM · gnupg, Feature Request

Jan 19 2016

gduzan added a project to T2221: user role: Feature Request.
Jan 19 2016, 6:39 PM · Feature Request

Jan 15 2016

werner lowered the priority of T2014: pinentry offers to save symmetric passwords in libsecret from Normal to Wishlist.
Jan 15 2016, 4:41 PM · Feature Request, gnupg
werner added a project to T2014: pinentry offers to save symmetric passwords in libsecret: Feature Request.
Jan 15 2016, 4:41 PM · Feature Request, gnupg
werner lowered the priority of T2134: iconv.dll is still a problem from Normal to Wishlist.
Jan 15 2016, 1:20 PM · Feature Request, gnupg
werner added a project to T2134: iconv.dll is still a problem: Feature Request.
Jan 15 2016, 1:20 PM · Feature Request, gnupg