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.
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).
15 ** When a certificate chain was sucessfully verified, make ephemeral certs used in this chain permanent.
16 ** Try to keep certificate references somewhere
17 This will help with some of our caching code. We also need to test
18 that caching; in particular "regtp_ca_chainlen".
21 ** replace leading zero in integer hack by a cleaner solution
24 ** mark all unimplemented commands and options.
25 ** Implement --default-key
26 ** support the anyPolicy semantic
27 ** Check that we are really following the verification procedures in rfc3280.
28 ** Implement a --card-status command.
29 This is useful to check whether a card is supported at all.
33 ** Check file permissions
34 ** Check that all error code mapping is done.
35 ** Remove the inter-module dependencies between gpgsm and keybox
36 ** Add an source_of_key field
39 ** Make sure that secure memory is used where appropriate
41 * agent/pkdecrypt.c, agent/pksign.c
42 ** Don't use stdio to return results.
45 * Move pkcs-1 encoding into libgcrypt.
47 * Use a MAC to protect sensitive files.
48 The problem here is that we need yet another key and it is unlikely
49 that users are willing to remember that key too. It is possible to
50 do this with a smartcard, though.
53 ** Return an error code or a status info per user ID.
56 The parse_sexp fucntion should not go into this file. Check whether
57 we can change all S-expression handling code to make use of this
61 ** Application context vs. reader slot
62 We have 2 concurrent method of tracking whether a read is in use:
63 Using the session_list in command.c and the lock_table in app.c. IT
64 would be better to do this just at one place. First we need to see
65 how we can support cards with multiple applications.
66 ** Detecting a removed card works only after the ticker detected it.
67 We should check the card status in open-card to make this smoother.
68 Needs to be integrated with the status file update, though. It is
69 not a real problem because application will get a card removed status
70 and should the send a reset to try solving the problem.
74 We use printf(1) to setup the library path, this is not portable.
75 Furthermore LD_LIBRARY_PATH is not used on all systems. It doesn't
76 matter for now, because we use some GNU/*BSDish features anyway.
78 ** Add a test to check the extkeyusage.
81 ** Explain how to setup a root CA key as trusted
82 ** Explain how trustlist.txt might be managed.
83 ** Write a script to generate man pages from texi.
88 ** gpgsm's LISTKEYS does not yet work
89 Fix is to change everything to libestream
90 ** Signals are not support
91 This means we can't reread a configuration
92 ** No card status notifications.
97 ** check that we issue NO_SECKEY xxx if a -u key was not found
98 We don't. The messages retruned are also wrong (recipient vs. signer).
101 ** provide jnlib_malloc and try to remove all jnlib_xmalloc.
102 ** Extend utf8conv.c to make use of iconv.
103 Need to merge with the code in 1.4/util/strgutil.c.
106 ** issue a NO_SECKEY xxxx if a -u key was not found.
107 ** Replace DIGEST_ALGO_SHA224
108 We can't do that right now because it is only defined by newer
109 versions of libgcrypt. Change this if we require libgcrypt 1.3
112 We pass a new qbit parameter to genkey - implement this in libgcrypt.
114 As soon as we switch to libgcrypt 1.3 we should remove the hard
115 coded constant in random_is_faked.
120 Add completion support.
122 Update to gpg 1.4.3 version
125 * Extend selinux support to other modules