Return the balance of a Geldkarte.
[gnupg.git] / TODO
blob78068358b598b78673c113b943c709750507f148
1                                                               -*- outline -*-
3 * src/base64                                                  
4 ** Make parsing more robust
5    Currently we don't cope with overlong lines in the best way.
6 ** Check that we really release the ksba reader/writer objects.
8 * sm/call-agent.c
9 ** Some code should go into import.c
10 ** When we allow concurrent service request in gpgsm, we
11    might want to have an agent context for each service request
12    (i.e. Assuan context).
14 * sm/certchain.c
15 ** Try to keep certificate references somewhere
16   This will help with some of our caching code.  We also need to test
17   that caching; in particular "regtp_ca_chainlen".
19 * sm/decrypt.c
20 ** replace leading zero in integer hack by a cleaner solution
22 * sm/gpgsm.c
23 ** mark all unimplemented commands and options.
24 ** Implement --default-key
25 ** support the anyPolicy semantic
28 * sm/keydb.c
29 ** Check file permissions
30 ** Check that all error code mapping is done.
31 ** Remove the inter-module dependencies between gpgsm and keybox
32 ** Add an source_of_key field
34 * agent/
35 ** If we detect that a private key has been deleted
36    Bump the key event counter.
38 * agent/command.c
39 ** Make sure that secure memory is used where appropriate
41 * agent/pkdecrypt.c, agent/pksign.c
42 ** Support DSA
44 * Move pkcs-1 encoding into libgcrypt.
46 * Use a MAC to protect sensitive files.
47   The problem here is that we need yet another key and it is unlikely
48   that users are willing to remember that key too.  It is possible to
49   do this with a smartcard, though.
51 * sm/export.c
52 ** Return an error code or a status info per user ID.
54 * common/tlv.c
55   The parse_sexp function should not go into this file.  Check whether
56   we can change all S-expression handling code to make use of this
57   function.
59 * scd
60 ** Application context vs. reader slot
61   We have 2 concurrent method of tracking whether a reader is in use:
62   Using the session_list in command.c and the lock_table in app.c.  It
63   would be better to do this just at one place. First we need to see
64   how we can support cards with multiple applications.
65 ** Resolve fixme in do_sign of app-dinsig.
66 ** Disconnect 
67   Card timeout is currently used as a boolean.  
68   Add disconnect support for the ccid driver.
70 * Regression tests
71 ** Add a regression test to check the extkeyusage.
73 * Windows port (W32)
74 ** Regex support is disabled
75   We need to adjust the test to find the regex we have anyway in 
76   gpg4win.  Is that regex compatible to the OpenPGP requirement?
79 * sm/
80 ** check that we issue NO_SECKEY xxx if a -u key was not found
81    We don't. The messages returned are also wrong (recipient vs. signer).
83 * jnlib/
84 ** Try to remove all jnlib_xmalloc.
86 * g10/
87 ** issue a NO_SECKEY xxxx if a -u key was not found.
89 * Extend selinux support to other modules
90   See also http://etbe.coker.com.au/2008/06/06/se-linux-support-gpg/
92 * UTF-8 specific TODOs
93   None.
95 * Manual
96 ** Document all gpgsm options.
97    
99 * Pinpad Reader
100   We do not yet support P15 applications.  The trivial thing using
101   ASCII characters will be easy to implement but the other cases need
102   some more work.
104 * Bugs
107 * Howtos
108 ** Migrate OpenPGP keys to another system
110 * Gpg-Agent Locale
111   Although we pass LC_MESSAGE from gpgsm et al. to Pinentry, this has
112   only an effect on the stock GTK strings (e.g. "OK") and not on any
113   strings gpg-agent generates and passes to Pinentry.  This defeats
114   our design goal to allow changing the locale without changing
115   gpg-agent's default locale (e.g. by the command updatestartuptty).
117 * RFC 4387: Operational Protocols: Certificate Store Access via HTTP
118   Do we support this?