TODO 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. TODO List
  2. 1.4.1
  3. - document which fields are in NBO/HBO, and check for consistency.
  4. - move HAVE_U_LONG_LONG inside of datatypes.c, or some other
  5. separate file
  6. - re-write configure.in to make cross-compilation easier
  7. - eliminate GENERIC_AESICM by generalizing the code a bit
  8. Older comments
  9. - add tests for key_limit_t datatype
  10. - move octet_get_weight() from datatypes.c to math.c (any other
  11. funcs?)
  12. Changes and additions planned
  13. Make cipher and auth dealloc() functions zeroize the key-storage
  14. areas before calling free().
  15. Eliminate key_len from auth_init()
  16. Doucument internal APIs (cipher, auth, srtp_protect, ...)
  17. SRTP options not (yet) included in this libaray:
  18. - the aes-f8-mode cipher
  19. - the Master Key Index
  20. - re-keying using the key derivation function (only the initial
  21. use of the PRF has been implemented, as it's sufficient
  22. for most uses)
  23. (OLD) PLANNED CHANGES
  24. strip out test/lfsr.c
  25. Write new documentation!!!
  26. Fix the x86 assembly code in aes.c.
  27. Eliminate /* DAM */ - there's one in srtp.c
  28. Change debugging so that it can print more than one line. Or perhaps
  29. just change it so that a single check of the debug-enabled flag is
  30. needed.
  31. Improve interface between cipher and rdbx - perhaps generalize rdbx
  32. into 'nonce' datatype.
  33. Make rijndael_icm accept variable sized keys.
  34. Add rdbx functions that allow different-sized explicit sequence
  35. numbers to be used.
  36. Write uniform byte-buffering code for PRFs, preferably as macros.
  37. Consider eliminating low-level alloc functions in favor of len()
  38. functions, so that there need not be multiple allocations within a
  39. particular alloc() function.