5 ** Make parsing more robust
6 Currently we don't cope with overlong lines in the best way.
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).
17 ** Improve error reporting
18 ** Do some basic checks on the supplied DNs
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.
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
32 ** replace leading zero in integer hack by a cleaner solution
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.
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
54 ** A SIGHUP should also restart the scdaemon
55 But do this only after all connections terminated. As of now we
57 ** Watch the child process if not invoked as a daemon
58 and terminate after the child has terminated
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.
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.
78 ** Return an error code or a status info per user ID.
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.
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.
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