2002-10-19 09:55:27 +02:00
|
|
|
-*- outline -*-
|
1998-10-18 17:21:22 +02:00
|
|
|
|
2007-04-13 13:45:05 +02:00
|
|
|
* src/base64
|
2002-10-19 09:55:27 +02:00
|
|
|
** Make parsing more robust
|
2006-10-24 16:45:34 +02:00
|
|
|
Currently we don't cope with overlong lines in the best way.
|
2006-03-21 13:48:51 +01:00
|
|
|
** Check that we really release the ksba reader/writer objects.
|
2000-10-11 19:26:49 +02:00
|
|
|
|
2002-10-19 09:55:27 +02:00
|
|
|
* sm/call-agent.c
|
|
|
|
** Some code should go into import.c
|
|
|
|
** When we allow concurrent service request in gpgsm, we
|
2006-10-24 16:45:34 +02:00
|
|
|
might want to have an agent context for each service request
|
|
|
|
(i.e. Assuan context).
|
1999-12-08 22:03:03 +01:00
|
|
|
|
2002-10-19 09:55:27 +02:00
|
|
|
* sm/certchain.c
|
2006-03-21 10:56:47 +01:00
|
|
|
** Try to keep certificate references somewhere
|
|
|
|
This will help with some of our caching code. We also need to test
|
2006-06-20 19:21:37 +02:00
|
|
|
that caching; in particular "regtp_ca_chainlen".
|
2004-08-18 16:37:22 +02:00
|
|
|
|
2002-10-19 09:55:27 +02:00
|
|
|
* sm/decrypt.c
|
|
|
|
** replace leading zero in integer hack by a cleaner solution
|
1999-12-08 22:03:03 +01:00
|
|
|
|
2002-10-19 09:55:27 +02:00
|
|
|
* sm/gpgsm.c
|
2004-01-16 18:39:58 +01:00
|
|
|
** Implement --default-key
|
2004-08-17 17:26:22 +02:00
|
|
|
** support the anyPolicy semantic
|
2009-03-30 14:46:06 +02:00
|
|
|
** Should we prefer nonRepudiation certs over plain signing certs?
|
|
|
|
Also: Do we need a way to allow the selection of a qualSig cert
|
|
|
|
over a plain one? The background is that the Telesec cards have 3
|
|
|
|
certs capable of signing all with the same subject name.
|
1999-09-15 17:58:40 +02:00
|
|
|
|
2002-10-19 09:55:27 +02:00
|
|
|
* sm/keydb.c
|
|
|
|
** Check file permissions
|
|
|
|
** Check that all error code mapping is done.
|
|
|
|
** Remove the inter-module dependencies between gpgsm and keybox
|
2003-06-03 21:55:50 +02:00
|
|
|
** Add an source_of_key field
|
2002-06-29 16:15:02 +02:00
|
|
|
|
2006-11-14 15:53:42 +01:00
|
|
|
* agent/
|
|
|
|
** If we detect that a private key has been deleted
|
|
|
|
Bump the key event counter.
|
|
|
|
|
2002-10-19 09:55:27 +02:00
|
|
|
* agent/command.c
|
|
|
|
** Make sure that secure memory is used where appropriate
|
2002-06-29 16:15:02 +02:00
|
|
|
|
2002-10-19 09:55:27 +02:00
|
|
|
* agent/pkdecrypt.c, agent/pksign.c
|
2004-08-17 17:26:22 +02:00
|
|
|
** Support DSA
|
1999-08-31 17:30:12 +02:00
|
|
|
|
2002-10-19 09:55:27 +02:00
|
|
|
* Move pkcs-1 encoding into libgcrypt.
|
1999-09-02 16:50:38 +02:00
|
|
|
|
2005-01-13 19:00:46 +01:00
|
|
|
* Use a MAC to protect sensitive files.
|
|
|
|
The problem here is that we need yet another key and it is unlikely
|
|
|
|
that users are willing to remember that key too. It is possible to
|
|
|
|
do this with a smartcard, though.
|
1999-09-02 16:50:38 +02:00
|
|
|
|
2002-10-19 09:55:27 +02:00
|
|
|
* sm/export.c
|
|
|
|
** Return an error code or a status info per user ID.
|
1999-09-02 16:50:38 +02:00
|
|
|
|
2008-09-29 17:02:55 +02:00
|
|
|
* common/tlv.c
|
2006-10-24 16:45:34 +02:00
|
|
|
The parse_sexp function should not go into this file. Check whether
|
2005-05-21 20:49:00 +02:00
|
|
|
we can change all S-expression handling code to make use of this
|
|
|
|
function.
|
|
|
|
|
2005-06-03 15:57:24 +02:00
|
|
|
* scd
|
|
|
|
** Application context vs. reader slot
|
2007-07-17 20:11:24 +02:00
|
|
|
We have 2 concurrent method of tracking whether a reader is in use:
|
2008-11-11 09:22:06 +01:00
|
|
|
Using the session_list in command.c and the lock_table in app.c. It
|
2005-06-03 15:57:24 +02:00
|
|
|
would be better to do this just at one place. First we need to see
|
|
|
|
how we can support cards with multiple applications.
|
2008-06-26 21:09:07 +02:00
|
|
|
** Resolve fixme in do_sign of app-dinsig.
|
2008-12-05 13:01:01 +01:00
|
|
|
** Disconnect
|
|
|
|
Card timeout is currently used as a boolean.
|
|
|
|
Add disconnect support for the ccid driver.
|
2006-03-01 12:05:47 +01:00
|
|
|
|
2008-12-05 13:01:01 +01:00
|
|
|
* Regression tests
|
2008-03-26 10:20:40 +01:00
|
|
|
** Add a regression test to check the extkeyusage.
|
2004-02-20 14:46:21 +01:00
|
|
|
|
2007-06-15 16:27:31 +02:00
|
|
|
* Windows port (W32)
|
|
|
|
** Regex support is disabled
|
|
|
|
We need to adjust the test to find the regex we have anyway in
|
2008-02-22 16:47:18 +01:00
|
|
|
gpg4win. Is that regex compatible to the OpenPGP requirement?
|
2007-06-15 16:27:31 +02:00
|
|
|
|
2004-12-21 11:03:00 +01:00
|
|
|
|
2005-07-20 17:05:05 +02:00
|
|
|
* sm/
|
2005-12-16 16:52:48 +01:00
|
|
|
** check that we issue NO_SECKEY xxx if a -u key was not found
|
2006-09-22 20:15:18 +02:00
|
|
|
We don't. The messages returned are also wrong (recipient vs. signer).
|
2005-12-16 16:52:48 +01:00
|
|
|
|
2006-08-17 20:01:25 +02:00
|
|
|
* g10/
|
2005-12-16 16:52:48 +01:00
|
|
|
** issue a NO_SECKEY xxxx if a -u key was not found.
|
2006-10-18 19:19:08 +02:00
|
|
|
|
2006-08-17 20:01:25 +02:00
|
|
|
* Extend selinux support to other modules
|
2008-11-11 09:22:06 +01:00
|
|
|
See also http://etbe.coker.com.au/2008/06/06/se-linux-support-gpg/
|
2006-08-17 20:01:25 +02:00
|
|
|
|
2007-05-08 15:59:41 +02:00
|
|
|
* UTF-8 specific TODOs
|
2007-08-14 18:50:27 +02:00
|
|
|
None.
|
2007-03-07 21:55:14 +01:00
|
|
|
|
2008-11-13 13:37:45 +01:00
|
|
|
* Manual
|
|
|
|
** Document all gpgsm options.
|
|
|
|
|
|
|
|
|
2007-03-07 21:55:14 +01:00
|
|
|
* Pinpad Reader
|
|
|
|
We do not yet support P15 applications. The trivial thing using
|
2007-03-19 15:35:04 +01:00
|
|
|
ASCII characters will be easy to implement but the other cases need
|
2007-03-07 21:55:14 +01:00
|
|
|
some more work.
|
2007-03-19 15:35:04 +01:00
|
|
|
|
|
|
|
* Bugs
|
2008-11-11 09:22:06 +01:00
|
|
|
|
2007-03-19 15:35:04 +01:00
|
|
|
|
2007-05-15 18:10:48 +02:00
|
|
|
* Howtos
|
|
|
|
** Migrate OpenPGP keys to another system
|
2007-05-07 21:49:12 +02:00
|
|
|
|
2007-11-19 17:32:05 +01:00
|
|
|
* Gpg-Agent Locale
|
|
|
|
Although we pass LC_MESSAGE from gpgsm et al. to Pinentry, this has
|
|
|
|
only an effect on the stock GTK strings (e.g. "OK") and not on any
|
|
|
|
strings gpg-agent generates and passes to Pinentry. This defeats
|
|
|
|
our design goal to allow changing the locale without changing
|
|
|
|
gpg-agent's default locale (e.g. by the command updatestartuptty).
|
|
|
|
|
2008-05-06 16:03:36 +02:00
|
|
|
* RFC 4387: Operational Protocols: Certificate Store Access via HTTP
|
|
|
|
Do we support this?
|
2007-11-19 17:32:05 +01:00
|
|
|
|