ChangeLog 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. 2006-11-27 Marcus Brinkmann <marcus@g10code.de>
  2. * src/pkcs11.h: Add more definitions provided by Andreas Jellinghaus.
  3. * README (Copyright and License): Update copyright notice. Also
  4. for all other files.
  5. * AUTHORS (Maintainer): Removed RSA Security Inc.
  6. * include/pkcs11t.h, include/pkcs11f.h, include/pkcs11.h,
  7. include/disclaimer.txt, include/cryptoki-w32.h,
  8. include/cryptoki-generic.h, include/README, include/Makefile.am:
  9. Files removed.
  10. * configure.ac (AC_CONFIG_FILES): Removed include/Makefile.
  11. * Makefile.am (SUBDIRS): Removed include directory.
  12. 2006-11-24 Marcus Brinkmann <marcus@g10code.de>
  13. * src/pkcs11.h: New file.
  14. * src/Makefile.am (libscute_la_SOURCES): Add pkcs11.h.
  15. * src/cryptoki.h: Include "pkcs11.h" instead of original PKCS #11
  16. header file.
  17. * tests/t-support.h (mechanism_type_str): Remove most mechanisms.
  18. 2006-11-23 Marcus Brinkmann <marcus@g10code.de>
  19. * src/cert-gpgsm.c (search_certs_line): Don't overwrite CERT->uid.
  20. 2006-11-21 Marcus Brinkmann <marcus@g10code.de>
  21. * src/cert-gpgsm.c (search_certs_line): Fix off-by-one error.
  22. (export_cert_cb): Fix bug if EXP->buffer_size is 0.
  23. * src/cert-gpgsm.c (cert_reset): Free CERT->cert_der if set.
  24. (export_cert): Reimplement using data channel.
  25. (export_cert_compat): This contains the old version for
  26. compatibility.
  27. * src/cert.h (MAX_CERT_SIZE): Macro removed.
  28. (struct cert): Changed member CERT_DER into a pointer.
  29. * configure.ac (AC_CONFIG_FILES): Add doc/manual/Makefile.
  30. * doc/Makefile.am (SUBDIRS): New variable.
  31. * doc/manual/Makefile, doc/manual/scute.texi, doc/manual/gpl.texi,
  32. doc/manual/mdate-sh, doc/manual/texinfo.tex,
  33. doc/manual/firefox-cm.png, doc/manual/firefox-cm-view-detail.png,
  34. doc/manual/firefox-cm-view.png,
  35. doc/manual/firefox-dm-load-after.png,
  36. doc/manual/firefox-dm-load-before.png,
  37. doc/manual/firefox-dm-load.png,
  38. doc/manual/firefox-dm-token-present.png,
  39. doc/manual/firefox-pref.png, doc/manual/firefox-pref-view.png: New
  40. files.
  41. 2006-11-11 Marcus Brinkmann <marcus@g10code.de>
  42. * Released version 1.0.0.
  43. 2006-11-11 Marcus Brinkmann <marcus@g10code.de>
  44. * src/error-mapping.c (scute_gpg_err_to_ck): Report error on debug
  45. stream.
  46. * src/slots.c (add_object): New function.
  47. (slot_init): Rewritten using add_object.
  48. * src/gpgsm.c: Include "gpgsm.h".
  49. (struct search): Replace members ATTRP, ATTR_COUNTP, PRV_ATTRP,
  50. PRV_ATTR_COUNTP by CERT_GET_CB, HOOK.
  51. (search_cb): Rewritten to add all certificates for a certain key
  52. (scute_gpgsm_get_cert): Take a callback function instead of
  53. attribute pointers.
  54. * gpgsm.h (scute_gpgsm_get_cert): Adjust prototype.
  55. and also the certificate chain.
  56. * src/cert.h (scute_gpgsm_search_certs_by_fpr): New prototype.
  57. (struct cert): New member chain_id.
  58. * src/cert-gpgsm.c (struct search_ctx_by_grip): Rename to ...
  59. (struct search_ctx): ... this. Rename field GRIP to PATTERN, and
  60. add new field FIELD.
  61. (search_certs_by_grip): Rename function to ...
  62. (search_certs): ... this.
  63. (scute_gpgsm_search_certs_by_fpr): Change user of the above.
  64. (scute_gpgsm_search_certs_by_fpr): New function.
  65. (search_certs_line): Store chain ID.
  66. 2006-11-07 Marcus Brinkmann <marcus@g10code.de>
  67. * src/p11-gettokeninfo.c (C_GetTokenInfo): Fix assignment.
  68. 2006-11-06 Marcus Brinkmann <marcus@g10code.de>
  69. * doc/website/format/web.css: Set margin to 0.
  70. * configure.ac (AC_CONFIG_FILES): Add doc/Makefile.
  71. Makefile.am (SUBDIRS): Add doc/.
  72. doc/, doc/website/, doc/website/format: New directories.
  73. doc/Makefile.am, doc/website/index.xhtml,
  74. doc/website/documentation.xhtml, doc/website/download.xhtml,
  75. doc/website/contact.xhtml, doc/website/format/web.css,
  76. doc/website/format/scute-logo.svg,
  77. doc/website/format/scute-border.jpg: New files.
  78. 2006-10-30 Marcus Brinkmann <marcus@g10code.de>
  79. * configure.ac (PACKAGE, VERSION): Define these variables.
  80. * src/Makefile.am (libscute_la_CPPFLAGS): Fix include path for
  81. VPATH builds.
  82. * configure.ac (VERSION_MAJOR, VERSION_MINOR): New variable
  83. definitions.
  84. * src/gpgsm.h: Fix syntax error.
  85. * src/table.c, src/table.h: Rewritten.
  86. * src/slots.c: Reorganized and rewritten to use the new table
  87. interface. Include gpgsm.h.
  88. * src/p11-signinit.c, src/p11-sign.c, src/p11-getslotlist.c,
  89. src/p11-getsessioninfo.c, src/p11-getmechanismlist.c,
  90. src/p11-getattributevalue.c, src/p11-findobjectsinit.c,
  91. src/p11-findobjectsfinal.c, src/p11-findobjects.c,
  92. src/p11-closesession.c: Adjust callers.
  93. 2006-10-26 Marcus Brinkmann <marcus@g10code.de>
  94. * src/settings.h: Require VERSION_MAJOR and VERSION_MINOR to be
  95. defined.
  96. * src/p11-getinfo.c (CRYPTOKI_VERSION_MAJOR,
  97. CRYPTOKI_VERSION_MINOR): Move macros to ...
  98. * src/cryptoki.h (CRYPTOKI_VERSION_MAJOR, CRYPTOKI_VERSION_MINOR):
  99. ... here
  100. * src/gpgsm.c (gpgsm_get_cert): Rename to ...
  101. (scute_gpgsm_get_cert): ... this.
  102. * src/gpgsm.h: New file.
  103. * src/Makefile.am (libscute_la_SOURCES): Add gpgsm.h.
  104. * src/slots.c (gpgsm_get_cert): Remove prototype.
  105. (slots_update_slot): Call scute_gpgsm_get_cert, not gpgsm_get_cert.
  106. * src/error-mapping.c (scute_gpg_err_to_ck): Map GPG_ERR_NO_AGENT
  107. to CKR_GENERAL_ERROR.
  108. * src/agent.h (struct agent_card_info_s): Remove member error.
  109. Prefix external functions with scute_ if not already done so, also
  110. for callers.
  111. * src/agent.c: Include <stdarg.h>. Replace one-letter variable
  112. names by proper ones. Replace assuan_error_t with gpg_error_t
  113. everywhere.
  114. (agent_connect, agent_simple_cmd, agent_configure): New functions.
  115. (scute_agent_initialize): Use these new functions.
  116. ing of common code. Lots of cleanups.
  117. (scute_agent_finalize): Clear agent_ctx. Add debug message.
  118. 2006-10-13 Werner Koch <wk@g10code.com>
  119. * src/cert-gpgsm.c (MAX_LINE_LEN): Increased.
  120. * src/locking.c: Include string.h for memset declaration.
  121. * configure.ac: New option --disable-optimization.
  122. 2006-08-02 Marcus Brinkmann <marcus@g10code.de>
  123. * Initial version.
  124. Copyright 2006 g10 Code GmbH
  125. This file is free software; as a special exception the author gives
  126. unlimited permission to copy and/or distribute it, with or without
  127. modifications, as long as this notice is preserved.
  128. This file is distributed in the hope that it will be useful, but
  129. WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
  130. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.