* keyserver.c (path_makes_direct): New. (keyserver_spawn): Used here
[gnupg.git] / TODO
blob373b20592f6095aba20f17f93e0596ec3396e6c5
1   * Using an expired key for signing should give an error message
2     "expired key" and not "unusable key'.  Furthermore the error should
3     also be thrown when the default key has expired.  Reported by
4     Eric.VanBuggenhaut add AdValvas.be.
6   * pause scrolling help in --edit-key and elsewhere.
8   * getkey does not return revoked/expired keys - therefore it is not
9     possible to override it.
11   * Selection using +wordlist does not work.
12     What about adding a feature -word to the +wordlist search mode.
14   * Check the changes to the gpg random gatherer on all W32 platforms.
16   * Show more info does not work from edit->trust. We should give more
17     information on the user ID under question while running
18     --update-trustdb.
20   * Check that no secret temporary results are stored in the result parameter
21     of the mpi functions.  We have already done this for mpi-mul.c 
23   * We need another special packet at the end of a clearsign message to mark
24     it's end and allow for multiple signature for one message.  And
25     add a real grammar to the code in mainproc.c
27   * If there is no secure memory, allocate more memory for the secure
28     memory block or do it in all cases.
30   * add some minor things vor VMS.
32   * Use DSA keys with the test suite (partly done)
34   * Fix the bug in the mips assembler code
36   * Add a way to show the fingerprint of an key signator's keys
38   * Concatenated encryption messages don't work corectly - only the
39     first one is processed.
41   * Add option to put the list of recipients (from the encryption
42     layer) into the signatures notation data.
44   * --disable-asm should still assemble _udiv_qrnnd when needed
46   * add test cases for invalid data (scrambled armor or other random data)
48   * the pubkey encrypt functions should do some sanity checks.
50   * "gpg filename.tar.gz.asc" should work like --verify (-sab).
52   * for messages created with "-t", it might make sense to append the
53     verification status of the message to the output (i.e. write something to
54     the --output file and not only to stderr.  However the problem is
55     that we consider the message transpatrent and don't have any
56     indication of the used character set.  To implement this feature
57     we need to make sure that all output is plain 7 bit ascii but
58     given that we need to print a user name, this does not make sense
59     at all.  The only way this can be implemented is by assuming that
60     the message is encoded in utf8 and hope tht everyone starts to use
61     utf8 instead of latin-1 or whatever RSN.  Hmmm, I myself should
62     start with this.
64   * keyflags don't distinguish between {certify,signature}-only.
66   * cat foo | gpg --sign | gpg --list-packets
67     Does not list the signature packet.
69   * When presenting the result of a verification show the user ID with
70     the highest trust level first instead of the primary one.
72   * allow the use of option in gpg.conf. 
74   * Add the NEWSIG status.
76   * Delete a card key as well as a wiping.
78   * passphrase_to_dek does not return NULL after a cancel.  There is
79     no way to issue a cancel when unsing the CLI - this would however
80     be a Good Thing when used with mixed symkey/pubkey encrypted
81     messages. See comment in mainproc.c:proc_symkey_enc.