Page MenuHome GnuPG
Feed Advanced Search

Oct 25 2016

justus added a comment to T2809: Agent required for symmetric operation causes encrypted partitions to fail to mount.

Set the environment variable GNUPGHOME to the desired location.

Oct 25 2016, 11:23 AM · gnupg, Feature Request
ftiede added a comment to T2809: Agent required for symmetric operation causes encrypted partitions to fail to mount.

I'm working on a solution for this problem, but since gpg-agent does now ignore
--no-use-standard-socket, how do I tell the agent daemon on commandline where to
create its socket?

Oct 25 2016, 11:07 AM · gnupg, Feature Request

Oct 24 2016

justus closed T2810: website: anchor to the binary versions on download page as Resolved.
Oct 24 2016, 12:14 PM · Feature Request

Oct 21 2016

werner added a comment to T2760: Populate comment field when exporting authentication key for SSH.

Using the original file name does not make much sense because it is common to
delete that file. Maybe the creation/ctore date and key algorithm can be used
as a default.

With the extended private key format we could add a comment field for ssh.

Oct 21 2016, 10:56 AM · gnupg24, ssh, Feature Request
werner added a project to T2811: please compare the timestamps of secring.gpg and .gpg-v21-migrated and consider re-migration: Feature Request.
Oct 21 2016, 10:49 AM · Won't Fix, Feature Request, gnupg
werner added a comment to T2359: Query which key will be used for a given mailbox.

The idea is to change the algorithm in the case that a full mail address is
given - and only a mail address. For both -r and --locate-key. g10/getkey.c
has get_pubkey_byname which implements --locate-key and already checks for a
mail address (IS_MBOX). This function needs to be changed to figure out all
matching keys an return the best one. -r should make use of that function also
if it is a mailbox.

Oct 21 2016, 10:43 AM · gnupg (gpg22), gnupg, Feature Request

Oct 20 2016

ArneBab reopened T2810: website: anchor to the binary versions on download page as "Open".
Oct 20 2016, 1:50 PM · Feature Request
ArneBab added a comment to T2810: website: anchor to the binary versions on download page.

Thank you!

Oct 20 2016, 1:50 PM · Feature Request
justus added a comment to T2809: Agent required for symmetric operation causes encrypted partitions to fail to mount.

You need to find a writable place for GnuPG 2.1 to bind its sockets to. If you
do, you can also use the smart card daemon. Using a smart card to store could
increase the security of your setup considerably. Also, I consider this an
integration issue, so talking to your distribution makes more sense imho.

Otoh, if GnuPG 1.4 fits your needs, you could continue to use that. It will be
maintained forever for compatibility with older PGP versions.

Oct 20 2016, 10:43 AM · gnupg, Feature Request
justus added a comment to T2810: website: anchor to the binary versions on download page.

Fixed in 165f0ecebc8a68bff30d5255962a3b44d8113940. Will be deployed to the
webserver soonish.

I figured out that the custom_id property also works without an toc.

Oct 20 2016, 10:30 AM · Feature Request
justus closed T2810: website: anchor to the binary versions on download page as Resolved.
Oct 20 2016, 10:30 AM · Feature Request
justus claimed T2810: website: anchor to the binary versions on download page.
Oct 20 2016, 10:30 AM · Feature Request

Oct 19 2016

ArneBab added a project to T2810: website: anchor to the binary versions on download page: Feature Request.
Oct 19 2016, 8:52 PM · Feature Request
ftiede added a comment to T2809: Agent required for symmetric operation causes encrypted partitions to fail to mount.

Ah, no. I don't _want_ to use pinentry, it's just what happens with GnuPG-2.0,
given that pinentry is installed and GnuPG is able to find it at that point. I
can very well live with the basic (blind) prompt from GnuPG-1.x (I think
pinentry's habit of displaying * characters for each passphrase character typed
is also _not_ an improvement). So, I'm using pinentry, because I don't have the
choice not to do so.

And, honestly, I find changing an application's behaviour such way it doesn't
work anymore like it did for years without even an option to get at least part
of the old behaviour back - I'm talking _only_ symmetric _de_cryption here, for
everything else I'm fine with the agent - is not really an "improvement".

I understand there has been considerable time invested in discussing and
evaluating options here, but this decision renders GnuPG worthless for a step of
security I've had and now I need to look up alternatives, with the tradeoff of
them being probably less thoroughly scrutinized, esp. in their implementation of
the cryptography part. Also not an "improvement".

Oct 19 2016, 5:13 PM · gnupg, Feature Request
justus added a comment to T2809: Agent required for symmetric operation causes encrypted partitions to fail to mount.

If you want to use the pinentry mechanism you need the agent in GnuPG 2.1.
There is no way around that. You need to find a writable place for GnuPG to
bind its sockets to.

Note that this is not an "issue", it is an improvement. GnuPG has been split up
into several components, a process called compartmentalization. The agent is no
longer optional.

Oct 19 2016, 4:20 PM · gnupg, Feature Request
ftiede added a comment to T2809: Agent required for symmetric operation causes encrypted partitions to fail to mount.

pinentry is used to enter the passphrase, during bootup pinentry-curses is in
use, after the GUI has started, a graphical version is used.

The major problem is that the gpg-agent tries to write to the root filesystem
when gpg is called to supply the key-material to LUKS. This fails with modern
GnuPG, stable GnuPG doesn't have this issue.

I am using Gentoo Linux AMD64 stable as operating system which stabilised
gnupg-2.1.15 a few days ago for general use.
In my LUKS setup GnuPG is used to symmetrically encrypt/decrypt a file
consisting the random data which in turn is the key for the LUKS partition in
question. So GnuPG does the part of requiring a secret for a required file to
get to the data in question, like a PIN to a credit card, both are worthless
without the other.

The process is roughly this:
The kernel starts and init (no systemd) proceeds to one step prior to checking
all to-be-mounted filesystems.
Now one or more partitions are found to be LUKS-encrypted with gpg-encrypted
keyfiles.
For each partition with such a gpg-encrypted keyfile gpg is called to decrypt
the keyfile and pass it to cryptsetup.
After all partitions have either been decrypted, the regular filesystem checks
are performed and filesystems are mounted as specified by /etc/fstab.

The crucial part is that up to the last step in the process the root filesystem
is still read-only and the agent's default location for the socket
(/root/.gnupg) doesn't allow creation of the socket.

Since my disk encryption relies on being able to enter the keyfile's passphrase
prior to being able to write to the root filesystem, I'm currently stuck with
GnuPG-2.0, which doesn't need its agent (contrary to its man-page, btw).

Oct 19 2016, 3:23 PM · gnupg, Feature Request
justus claimed T2760: Populate comment field when exporting authentication key for SSH.
Oct 19 2016, 3:11 PM · gnupg24, ssh, Feature Request
justus added a comment to T2760: Populate comment field when exporting authentication key for SSH.

The bug tracker has a spam problem, so new users need to be approved. I did that.

Note that the gpg-agent *does* relay comments if the private key has one. If
the key resides on a smart card, the cards serial number is used. It uses
'(none)' to indicate that no comment has been set.

I agree that '(none)' while technically correct is not very helpful, I'll have a
look if I can come up with a more helpful fallback comment.

Oct 19 2016, 3:11 PM · gnupg24, ssh, Feature Request
justus added a comment to T2809: Agent required for symmetric operation causes encrypted partitions to fail to mount.

How do you supply the passphrase? Modern GnuPG uses the gpg-agent to ask for
passphrases.

Also note that 'S.gpg-agent' is not a file, but a socket. Nothing is written
there, it is merely used for interprocess communication. Are you sure that
there is no writable location that can be used to create the sockets?

Please tell us more about your setup. What operating system are you using, how
is GnuPG used in the LUKS setup?

Oct 19 2016, 1:53 PM · gnupg, Feature Request
ftiede added projects to T2809: Agent required for symmetric operation causes encrypted partitions to fail to mount: Feature Request, gnupg.
Oct 19 2016, 11:59 AM · gnupg, Feature Request

Oct 18 2016

aheinecke updated subscribers of T2761: GPA: Add support to query a key from a command line argument..
Oct 18 2016, 3:12 PM · uiserver, gpa, gpgol, Feature Request
aheinecke added projects to T2761: GPA: Add support to query a key from a command line argument.: Feature Request, gpgol, gpa, uiserver.
Oct 18 2016, 3:12 PM · uiserver, gpa, gpgol, Feature Request

Oct 17 2016

johnlane added a comment to T2760: Populate comment field when exporting authentication key for SSH.

I wish to work more with the bug tracker.

Oct 17 2016, 12:09 PM · gnupg24, ssh, Feature Request
johnlane set Version to 2.1.15 on T2760: Populate comment field when exporting authentication key for SSH.
Oct 17 2016, 12:01 PM · gnupg24, ssh, Feature Request
johnlane added projects to T2760: Populate comment field when exporting authentication key for SSH: Feature Request, gnupg.
Oct 17 2016, 12:01 PM · gnupg24, ssh, 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
hanno added a comment to T2694: insecure links on gnupg webpage (gnupg.org) that could be https.

It seems you missed the creative commons links (on all pages).

Also some more:

  • Download page contains links to gpg4win, gpgotools (mac) and rpmfind which

are all available over https.

  • documentation page contains another http twitter link.

(Hint: The moartls browser addon for chrome and firefox is extremely useful to
do this)

Oct 16 2016, 2:33 PM · In Progress, Feature Request

Oct 13 2016

dkg added projects to T2754: provide mechanism to retrieve (and send?) session key in gpgme: Feature Request, gpgme.
Oct 13 2016, 11:44 PM · gpgme, Feature Request
dkg set Version to 1.7.0 on T2754: provide mechanism to retrieve (and send?) session key in gpgme.
Oct 13 2016, 11:44 PM · gpgme, Feature Request
justus added a comment to T2751: pyme.Context().get_key(fpr, secret) should have secret default to False.

Fixed in 1e6073ff.

Oct 13 2016, 1:23 PM · gpgme, Python, Feature Request
justus closed T2751: pyme.Context().get_key(fpr, secret) should have secret default to False as Resolved.
Oct 13 2016, 1:23 PM · gpgme, Python, Feature Request
justus added a project to T2751: pyme.Context().get_key(fpr, secret) should have secret default to False: Python.
Oct 13 2016, 1:23 PM · gpgme, Python, Feature Request
dkg added projects to T2751: pyme.Context().get_key(fpr, secret) should have secret default to False: Feature Request, gpgme.
Oct 13 2016, 1:41 AM · gpgme, Python, Feature Request

Oct 11 2016

dkg added projects to T2748: ssh-agent emulation should provide the primary User ID of any keys offered via ssh: Feature Request, gnupg.
Oct 11 2016, 10:53 PM · gnupg, Feature Request
dkg set Version to 2.1.15 on T2748: ssh-agent emulation should provide the primary User ID of any keys offered via ssh.
Oct 11 2016, 10:53 PM · gnupg, Feature Request

Oct 7 2016

justus added a comment to T2359: Query which key will be used for a given mailbox.

Please clarify the plan a bit. Shall we use the algorithm currently used by
--recipient, the one used by --locate-key, or implement a new one?

Oct 7 2016, 11:10 AM · gnupg (gpg22), gnupg, Feature Request

Oct 6 2016

dkg added a comment to T2700: Clean up the command line interface (avoid abbreviated --long-options, consistency).

another item for consistency is gpg-agent's different behavior between
--enable-ssh-socket and --extra-socket (and the undocumented --browser-socket,
for that matter, but since it's not documented maybe it's fine to just change
that one).

Oct 6 2016, 4:26 PM · gnupg, Feature Request, gnupg (gpg22)
justus added a comment to T2700: Clean up the command line interface (avoid abbreviated --long-options, consistency).

I have created two sample commits, pushed to

https://git.gnupg.org/cgi-bin/gitweb.cgi?p=gnupg.git;a=shortlog;h=refs/heads/justus/issue2700

The second one does indeed change translated strings. If I don't update
translated strings, then the messages will still refer to the old version of the
options, which will still work but won't show up in '--help'. Is there a
problem with updating the strings when I also update the .po files?

Oct 6 2016, 11:48 AM · gnupg, Feature Request, gnupg (gpg22)

Oct 5 2016

werner added a comment to T2732: unregisterd file types like *.skr.

FWIW, the use of file suffixes to determine the content of a file is pretty
fragile. On Unix this is not used due to the availibility of the file command.

The recent gpgme version has enhanced detection capabilities (even better than
file) for OpenPGP and S/MIME file types. If there is a way to hook into the
Explorer to determine the file type and set an icon we might be able to add this
to GpgOL

Oct 5 2016, 6:06 PM · Feature Request, gpg4win

Sep 30 2016

jenderek added projects to T2732: unregisterd file types like *.skr: gpg4win, Feature Request.
Sep 30 2016, 7:55 PM · Feature Request, gpg4win
justus added a comment to T1338: Windows ldap_start_tls_sA has more parameters than used in keyserver/gpgkeys_ldap.c.

Fixed in 8d370180.

Sep 30 2016, 11:03 AM · gnupg, Feature Request
justus closed T1338: Windows ldap_start_tls_sA has more parameters than used in keyserver/gpgkeys_ldap.c as Resolved.
Sep 30 2016, 11:03 AM · gnupg, Feature Request
justus claimed T1338: Windows ldap_start_tls_sA has more parameters than used in keyserver/gpgkeys_ldap.c.
Sep 30 2016, 10:10 AM · gnupg, Feature Request

Sep 28 2016

werner removed a project from T1089: Please store requests in a cache to avoid sending out duplicate requests (mailto: interface): gnupg (gpg21).
Sep 28 2016, 9:55 AM · gnupg (gpg23), gnupg, Debian, Feature Request
werner removed Version on T1089: Please store requests in a cache to avoid sending out duplicate requests (mailto: interface).
Sep 28 2016, 9:55 AM · gnupg (gpg23), gnupg, Debian, Feature Request
werner added a project to T1089: Please store requests in a cache to avoid sending out duplicate requests (mailto: interface): gnupg (gpg23).
Sep 28 2016, 9:55 AM · gnupg (gpg23), gnupg, Debian, Feature Request
werner added a comment to T1089: Please store requests in a cache to avoid sending out duplicate requests (mailto: interface).

There are a couple of ideas on how to use mail for key retrieval. We won't be
able to implement them for 2.2 but we should consider this for 2.3.

There won't be any changes for 1.4, though.

Sep 28 2016, 9:55 AM · gnupg (gpg23), gnupg, Debian, Feature Request
werner added a comment to T2700: Clean up the command line interface (avoid abbreviated --long-options, consistency).

Please do that as soon as you have some spare time. Take care not to chnage
translated strings.

Sep 28 2016, 9:36 AM · gnupg, Feature Request, gnupg (gpg22)
werner raised the priority of T2701: Do not let users create keys without an expiration date from Wishlist to Normal.
Sep 28 2016, 9:35 AM · Feature Request, gnupg (gpg22)
werner added a comment to T2701: Do not let users create keys without an expiration date.

By renew you mean prolonging the expiration time?

To add this new default we should first add a --quick-set-expire command to make
it easier to change the expiration time. Or --quick-expire to match the name
used in --edit-key - I don't care. And of course gpgme needs a new API.

Sep 28 2016, 9:35 AM · Feature Request, gnupg (gpg22)
werner updated subscribers of T2359: Query which key will be used for a given mailbox.
Sep 28 2016, 9:29 AM · gnupg (gpg22), gnupg, Feature Request
werner added a comment to T2359: Query which key will be used for a given mailbox.

According to T1143 (aheinecke on Jun 08 2016, 07:15 PM / Roundup) the plan is that locate-key as well as -r uses a new
mechanism to figure oiut the appropriate key. aheinecke already implemented
this strategy in Kmail but we want to have it in gnupg proper.

If the given key is specified by a mail address the new scheme kicks in for
--locate-key and all keys given with -r. gpg finds all matching non-expired and
suitable keys and then computes the validity (WoT, TOFU, whatever). That is
list ordered and the top ranked key is used. Newer keys/subkeys are preferred
and thus in general there should never be an ambiguity. In case there is an
ambiguity, -r should return an error and --locate-key should return all those keys.

Sep 28 2016, 9:29 AM · gnupg (gpg22), gnupg, Feature Request
werner reassigned T2359: Query which key will be used for a given mailbox from werner to justus.
Sep 28 2016, 9:29 AM · gnupg (gpg22), gnupg, Feature Request
werner added a comment to T2359: Query which key will be used for a given mailbox.

This bug supersedes T1143 and T1232.

Sep 28 2016, 9:21 AM · gnupg (gpg22), gnupg, Feature Request
werner added a comment to T1143: better heuristic for choosing an encryption key based on a User ID.

Duplicate of T2359

Sep 28 2016, 9:17 AM · Duplicate, gnupg, Feature Request
werner closed T1143: better heuristic for choosing an encryption key based on a User ID as Resolved.
Sep 28 2016, 9:17 AM · Duplicate, gnupg, Feature Request
werner added a project to T1143: better heuristic for choosing an encryption key based on a User ID: Duplicate.
Sep 28 2016, 9:17 AM · Duplicate, gnupg, Feature Request

Sep 27 2016

werner removed a project from T2226: Add sha-256 checksums to swdb.lst: In Progress.
Sep 27 2016, 11:51 AM · gnupg, Feature Request
werner closed T2226: Add sha-256 checksums to swdb.lst as Resolved.
Sep 27 2016, 11:51 AM · gnupg, Feature Request
werner removed a project from T2280: Wish for a new keygen API: Restricted Project.
Sep 27 2016, 11:50 AM · gnupg, gnupg (gpg21), Feature Request
werner closed T2280: Wish for a new keygen API as Resolved.
Sep 27 2016, 11:50 AM · gnupg, gnupg (gpg21), Feature Request
werner added a comment to T2280: Wish for a new keygen API.

gpgme 1.7.0 has been released and thus I consider this bug solved.

Sep 27 2016, 11:50 AM · gnupg, gnupg (gpg21), Feature Request
werner raised the priority of T2703: provide option to ignore expiration date from Low to Normal.
Sep 27 2016, 11:49 AM · gnupg, Feature Request
werner added a project to T2703: provide option to ignore expiration date: Feature Request.
Sep 27 2016, 11:49 AM · gnupg, Feature Request

Sep 23 2016

justus added a comment to T2700: Clean up the command line interface (avoid abbreviated --long-options, consistency).

Also, most options join words with hyphens, but some don't.

Sep 23 2016, 2:44 PM · gnupg, Feature Request, gnupg (gpg22)
justus renamed T2700: Clean up the command line interface (avoid abbreviated --long-options, consistency) from Avoid abbreviated --long-options, e.g. --recv-keys to Clean up the command line interface (avoid abbreviated --long-options, consistency).
Sep 23 2016, 2:44 PM · gnupg, Feature Request, gnupg (gpg22)
justus assigned T1464: key signing in GPGME to werner.
Sep 23 2016, 12:28 PM · gpgme, Feature Request
justus added a comment to T1464: key signing in GPGME.

Fixed in 1.7 with gpgme_op_keysign.

Sep 23 2016, 12:28 PM · gpgme, Feature Request
justus closed T1464: key signing in GPGME as Resolved.
Sep 23 2016, 12:28 PM · gpgme, Feature Request
justus added projects to T2701: Do not let users create keys without an expiration date: gnupg (gpg22), Feature Request, gnupg.
Sep 23 2016, 11:51 AM · Feature Request, gnupg (gpg22)
justus added projects to T2700: Clean up the command line interface (avoid abbreviated --long-options, consistency): gnupg (gpg22), Feature Request, gnupg.
Sep 23 2016, 11:18 AM · gnupg, Feature Request, gnupg (gpg22)

Sep 22 2016

werner added a comment to T2694: insecure links on gnupg webpage (gnupg.org) that could be https.

All done except for some news entries which are actually about http. Two
changes for cvs.gnupg.org will go online with the next page rebuild.

Sep 22 2016, 9:53 AM · In Progress, Feature Request
werner closed T2694: insecure links on gnupg webpage (gnupg.org) that could be https as Resolved.
Sep 22 2016, 9:53 AM · In Progress, Feature Request

Sep 21 2016

werner added a comment to T2694: insecure links on gnupg webpage (gnupg.org) that could be https.

Yeah we recently had a lot of spam, thus the http trick.

Thanks for the list; I'll look at them.

Sep 21 2016, 9:54 PM · In Progress, Feature Request
werner added a comment to T2696: SETREPEAT support for pinentry-curses.

SETREPEAT is an optional feature - thus I changed this to a feature requests.

Sep 21 2016, 9:50 PM · Feature Request, pinentry
werner added a project to T2696: SETREPEAT support for pinentry-curses: Feature Request.
Sep 21 2016, 9:49 PM · Feature Request, pinentry

Sep 20 2016

hanno added a project to T2694: insecure links on gnupg webpage (gnupg.org) that could be https: Feature Request.
Sep 20 2016, 12:05 PM · In Progress, Feature Request

Sep 15 2016

p91 added a project to T2688: unlocking gpg-agent via pam?: Feature Request.
Sep 15 2016, 11:11 AM · gpgagent, Feature Request
bernhard added a comment to T2687: 98 chars limits on archived filenames for windows (gpgtar).

I'm unsure about the compatibility issues with using a higher filename-length
limit.

Sep 15 2016, 9:31 AM · gpgtar, Bug Report, gpg4win
bernhard added projects to T2687: 98 chars limits on archived filenames for windows (gpgtar): gpg4win, Feature Request, gpgtar.
Sep 15 2016, 9:30 AM · gpgtar, Bug Report, gpg4win
bernhard updated subscribers of T2687: 98 chars limits on archived filenames for windows (gpgtar).
Sep 15 2016, 9:30 AM · gpgtar, Bug Report, gpg4win

Sep 14 2016

werner added a comment to T2280: Wish for a new keygen API.

gpgme 1.7 will have gpgme_op_createkey which takes "default" and
"future-default" as algorithm parameters. There is also a bunch of user
functions to make creating a key easy with gpgme.

Sep 14 2016, 1:27 PM · gnupg, gnupg (gpg21), Feature Request
werner added a comment to T1814: Add option to output the signed text with --verify.

This has been implemented in the repo to be released with 2.1.16.

Sep 14 2016, 1:23 PM · gnupg, Feature Request
werner closed T1814: Add option to output the signed text with --verify as Resolved.
Sep 14 2016, 1:23 PM · gnupg, Feature Request
werner added a project to T1814: Add option to output the signed text with --verify: Unreleased.
Sep 14 2016, 1:23 PM · gnupg, Feature Request
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
werner added a comment to T2364: gen-key --batch does not support certify only keys.

No bug, Use "cert" and not "certify".

Sep 14 2016, 1:19 PM · gnupg, Feature Request, KDE
werner closed T2364: gen-key --batch does not support certify only keys as Resolved.
Sep 14 2016, 1:19 PM · gnupg, Feature Request, KDE
uri set Version to 2.0.30 on T2683: Add config option to connect to HW token in non-exclusive (shared) mode.
Sep 14 2016, 3:32 AM · scd, Feature Request
uri added a project to T2683: Add config option to connect to HW token in non-exclusive (shared) mode: Feature Request.
Sep 14 2016, 3:32 AM · scd, Feature Request

Sep 12 2016

bernhard changed Version from 2.1.8 to 2.1.15 on T1804: HKPS scheme support for Windows Installer.
Sep 12 2016, 12:47 PM · Bug Report, gnupg, dirmngr
bernhard added a project to T1804: HKPS scheme support for Windows Installer: Bug Report.
Sep 12 2016, 12:47 PM · Bug Report, gnupg, dirmngr
bernhard updated subscribers of T1804: HKPS scheme support for Windows Installer.

@werner, if you prefer ntbtls over gnutls, okay. Can you add a link to ntblts
and outline the next steps. We'd probably need tls support for the web key
directory as well, so this needs a solution.

Sep 12 2016, 12:47 PM · Bug Report, gnupg, dirmngr

Sep 7 2016

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

It is a hack in OpenKeychain to allow the use of several devices. Frankly, I am
not sure whether this is really a good idea: The security is limited by the key
for the least secure device.

Sep 7 2016, 11:20 AM · gnupg, OpenPGP, Feature Request

Aug 31 2016

werner removed a project from T2450: Add --terminate-after-idle to gpg-agent: Trash.
Aug 31 2016, 12:09 PM · gnupg, Feature Request
werner added a project to T2450: Add --terminate-after-idle to gpg-agent: gnupg.
Aug 31 2016, 12:09 PM · gnupg, Feature Request
Jan-Oliver_Wagner removed a project from T2450: Add --terminate-after-idle to gpg-agent: gnupg.
Aug 31 2016, 12:08 PM · gnupg, Feature Request
Jan-Oliver_Wagner added a project to T2450: Add --terminate-after-idle to gpg-agent: Trash.
Aug 31 2016, 12:08 PM · gnupg, Feature Request

Aug 29 2016

werner added projects to T2450: Add --terminate-after-idle to gpg-agent: Feature Request, gnupg.
Aug 29 2016, 12:08 PM · gnupg, Feature Request