ChangeLog 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. 2006-10-30 Marcus Brinkmann <marcus@g10code.de>
  2. * configure.ac (PACKAGE, VERSION): Define these variables.
  3. * src/Makefile.am (libscute_la_CPPFLAGS): Fix include path for
  4. VPATH builds.
  5. * configure.ac (VERSION_MAJOR, VERSION_MINOR): New variable
  6. definitions.
  7. * src/gpgsm.h: Fix syntax error.
  8. * src/table.c, src/table.h: Rewritten.
  9. * src/slots.c: Reorganized and rewritten to use the new table
  10. interface. Include gpgsm.h.
  11. * src/p11-signinit.c, src/p11-sign.c, src/p11-getslotlist.c,
  12. src/p11-getsessioninfo.c, src/p11-getmechanismlist.c,
  13. src/p11-getattributevalue.c, src/p11-findobjectsinit.c,
  14. src/p11-findobjectsfinal.c, src/p11-findobjects.c,
  15. src/p11-closesession.c: Adjust callers.
  16. 2006-10-26 Marcus Brinkmann <marcus@g10code.de>
  17. * src/settings.h: Require VERSION_MAJOR and VERSION_MINOR to be
  18. defined.
  19. * src/p11-getinfo.c (CRYPTOKI_VERSION_MAJOR,
  20. CRYPTOKI_VERSION_MINOR): Move macros to ...
  21. * src/cryptoki.h (CRYPTOKI_VERSION_MAJOR, CRYPTOKI_VERSION_MINOR):
  22. ... here
  23. * src/gpgsm.c (gpgsm_get_cert): Rename to ...
  24. (scute_gpgsm_get_cert): ... this.
  25. * src/gpgsm.h: New file.
  26. * src/Makefile.am (libscute_la_SOURCES): Add gpgsm.h.
  27. * src/slots.c (gpgsm_get_cert): Remove prototype.
  28. (slots_update_slot): Call scute_gpgsm_get_cert, not gpgsm_get_cert.
  29. * src/error-mapping.c (scute_gpg_err_to_ck): Map GPG_ERR_NO_AGENT
  30. to CKR_GENERAL_ERROR.
  31. * src/agent.h (struct agent_card_info_s): Remove member error.
  32. Prefix external functions with scute_ if not already done so, also
  33. for callers.
  34. * src/agent.c: Include <stdarg.h>. Replace one-letter variable
  35. names by proper ones. Replace assuan_error_t with gpg_error_t
  36. everywhere.
  37. (agent_connect, agent_simple_cmd, agent_configure): New functions.
  38. (scute_agent_initialize): Use these new functions.
  39. ing of common code. Lots of cleanups.
  40. (scute_agent_finalize): Clear agent_ctx. Add debug message.
  41. 2006-10-13 Werner Koch <wk@g10code.com>
  42. * src/cert-gpgsm.c (MAX_LINE_LEN): Increased.
  43. * src/locking.c: Include string.h for memset declaration.
  44. * configure.ac: New option --disable-optimization.
  45. 2006-08-02 Marcus Brinkmann <marcus@g10code.de>
  46. * Initial version.
  47. Copyright 2006 g10 Code GmbH
  48. This file is free software; as a special exception the author gives
  49. unlimited permission to copy and/or distribute it, with or without
  50. modifications, as long as this notice is preserved.
  51. This file is distributed in the hope that it will be useful, but
  52. WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
  53. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.