2005-04-15 Marcus Brinkmann <marcus@g10code.de>
[gnupg.git] / TODO
blob9efbe6a1cc430d36750064d067bd8e6a2df1cd3a
1                                                               -*- outline -*-
4 * src/base64
5 ** Make parsing more robust
6 Currently we don't cope with overlong lines in the best way.
8 * sm/call-agent.c
9 ** The protocol uses an incomplete S-expression
10 We should always use valid S-Exp and not just parts.
11 ** Some code should go into import.c
12 ** When we allow concurrent service request in gpgsm, we
13 might want to have an agent context for each service request
14 (i.e. Assuan context).
16 * sm/certreqgen.c
17 ** Improve error reporting
18 ** Do some basic checks on the supplied DNs
20 * sm/certchain.c
21 ** When a certificate chain was sucessfully verified, make ephemeral certs used  in this chain permanent.
22 ** figure out how to auto retrieve a key by serialno+issuer.
23    Dirmngr is currently not able to parse more than the CN.
25 * sm/certlist.c
26 ** ocspSigning usage is not fully implemented
27    We should review the entire CRL and OCSP validation system.
28    Okay.  This has been fixed in dirmngr when running it in system
29    daemon mode.
31 * sm/decrypt.c
32 ** replace leading zero in integer hack by a cleaner solution
34 * sm/gpgsm.c
35 ** Support --output for all commands
36 ** mark all unimplemented commands and options.
37 ** Print a hint when MD2 is the cause for a problem.
38 ** Implement --default-key
39 ** Using --export-secret-key-p12 with a non-pth agent
40    This leads to a lockup because gpgsm is still accessing the agent
41    while gpg-protect-tool wants to pop up the pinentry.  Solution is
42    to release the connection.  This is not trivial, thus we are going
43    to do that while changing gpgsm to allow concurrent operations.
44 ** support the anyPolicy semantic
45 ** Check that we are really following the verification procedures in rfc3280.
47 * sm/keydb.c
48 ** Check file permissions
49 ** Check that all error code mapping is done.
50 ** Remove the inter-module dependencies between gpgsm and keybox
51 ** Add an source_of_key field
53 * agent/gpg-agent.c
54 ** A SIGHUP should also restart the scdaemon
55    But do this only after all connections terminated.  As of now we
56    only send a RESET.
57 ** Watch the child process if not invoked as a daemon
58    and terminate after the child has terminated
60 * agent/command.c
61 ** Make sure that secure memory is used where appropriate
63 * agent/pkdecrypt.c, agent/pksign.c
64 ** Don't use stdio to return results.
65 ** Support DSA
67 * agent/divert-scd.c
68  Remove the agent_reset_scd kludge.
70 * Move pkcs-1 encoding into libgcrypt.
72 * Use a MAC to protect sensitive files.
73   The problem here is that we need yet another key and it is unlikely
74   that users are willing to remember that key too.  It is possible to
75   do this with a smartcard, though.
77 * sm/export.c
78 ** Return an error code or a status info per user ID.
80 * tests
81 ** Makefile.am
82   We use printf(1) to setup the library path, this is not portable.
83   Furthermore LD_LIBRARY_PATH is not used on all systems.  It doesn't
84   matter for now, because we use some GNU/*BSDish features anyway.
86 ** Add a test to check the extkeyusage.
88 * doc/
89 ** Explain how to setup a root CA key as trusted
90 ** Explain how trustlist.txt might be managed.
91 ** Write a script to generate man pages from texi.
93 * Requirements by the BSI
94 ** Support authorityKeyIdentifier.keyIdentifier
95    This needs support in libksba/src/cert.c as well as in sm/*.c.
96    Need test certs as well.  Same goes for CRL authorityKeyIdentifier.
99 * Windows port
100 ** gpgsm's LISTKEYS does not yet work
101     Fix is to change everything to libestream
102 ** Signals are not support 
103     This means we can't reread a configuration
104 ** No card status notifications.
107 * [scdaemon] release the card after use so that gpg 1.4 is abale to access it