ChangeLog 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. 2003-03-03 Sebastien Pouliot <[email protected]>
  2. * DSAKeyValue.cs: Added patch from Atsushi Eno (to remove string
  3. XML generation).
  4. * RSAKeyValue.cs: Added patch from Atsushi Eno (to remove string
  5. XML generation).
  6. * XmlDsigBase64Transform.cs: Fixed problem when using XPath.
  7. 2003-03-02 Sebastien Pouliot <[email protected]>
  8. * DSAKeyValue.cs: New XML generation is commented. Old string technique
  9. did a better job to match MS implementation.
  10. * DataObject.cs: Replaced XML generation from StringBuilder to XmlElement.
  11. * KeyInfo.cs: Replaced XML generation from StringBuilder to XmlElement.
  12. * KeyInfoName.cs: Replaced XML generation from StringBuilder to XmlElement.
  13. * KeyInfoNode.cs: Replaced XML generation from StringBuilder to XmlElement.
  14. * KeyInfoRetrievalMethod.cs: Replaced XML generation from StringBuilder to XmlElement.
  15. * KeyInfoX509Data.cs: Replaced XML generation from StringBuilder to XmlElement.
  16. * RSAKeyValue.cs: New XML generation is commented. Old string technique
  17. did a better job to match MS implementation.
  18. * Reference.cs: Replaced XML generation from StringBuilder to XmlElement.
  19. * Signature.cs: Replaced XML generation from StringBuilder to XmlElement.
  20. * SignedInfo.cs: Replaced XML generation from StringBuilder to XmlElement.
  21. * SignedXml.cs: Replaced XML generation from StringBuilder to XmlElement.
  22. * Transform.cs: Replaced XML generation from StringBuilder to XmlElement.
  23. * XmlDsigEnvelopedSignatureTransform.cs: Added missing Algorithm URL.
  24. * XmlDsigXPathTransform.cs: Added missing Algorithm URL.
  25. * XmlSignature.cs: New. Private contants (construct similar to WSE).
  26. 2003-02-19 Sebastien Pouliot <[email protected]>
  27. * All: Corrected class indentation, minor fixes, added many MonoTODO (so class status
  28. will reflect reality).
  29. 2003-01-17 Sebastien Pouliot <[email protected]>
  30. * KeyInfo.cs: Changed some protected declaration to private.
  31. * KeyInfoName.cs: Changed some protected declaration to private.
  32. * KeyInfoNode.cs: Changed some protected declaration to private.
  33. * KeyInfoRetrievalMethod.cs: Changed some protected declaration to private.
  34. * KeyInfoX509Data.cs: Changed some protected declaration to private.
  35. * Transform.cs: Changed some protected declaration to private.
  36. * XmlDsigBase64Transform.cs: Changed some protected declaration to private.
  37. * XmlDsigC14NTransform.cs: Changed some protected declaration to private.
  38. * XmlDsigC14NWithCommentsTransform.cs: Changed some protected declaration to private.
  39. * XmlDsigEnvelopedSignatureTransform.cs: Changed some protected declaration to private.
  40. * XmlDsigXPathTransform.cs: Changed some protected declaration to private.
  41. * XmlDsigXsltTransform.cs: Changed some protected declaration to private.
  42. 2002-11-28 Sebastien Pouliot <[email protected]>
  43. * TODOAttribute.cs: New. Still much to do ;-)
  44. * XmlDsigXPathTransform.cs: Corrected to compile. Transform is non-
  45. functionnal.
  46. * XmlDsigXsltTransform.cs: Corrected to compile. Transform is non-
  47. functionnal.
  48. 2002-11-20 Sebastien Pouliot <[email protected]>
  49. * DataObject.cs: New. Complete implementation.
  50. * DSAKeyValue.cs: New. Complete implementation.
  51. * KeyInfo.cs: New. Complete implementation.
  52. * KeyInfoClause.cs: New. Abstract class (complete).
  53. * KeyInfoName.cs: New. Complete implementation.
  54. * KeyInfoNode.cs: New. Complete implementation.
  55. * KeyInfoRetrievalMethod.cs: New. Complete implementation.
  56. * KeyInfoX509Data.cs: New. Complete implementation.
  57. * Reference.cs: New. Incomplete implementation.
  58. * RSAKeyValue.cs: New. Complete implementation.
  59. * Signature.cs: New. Almost complete implementation - returned
  60. XML isn't exactly like the MS implementation.
  61. * SignedInfo.cs: New. Complete except SignatureLength.
  62. * SignedXml.cs: New. Minimal implementation (only enveloped signatures).
  63. Still many TODO!
  64. * Transform.cs: New. Abstract class (complete).
  65. * TransformChain.cs: New. Complete implementation.
  66. * XmlDsigBase64Transform.cs: New. Stub + basic logic.
  67. * XmlDsigC14NTransform.cs: New. Stub + basic logic.
  68. * XmlDsigC14NWithCommentsTransform.cs: New. Stub + basic logic.
  69. * XmlDsigEnvelopedSignatureTransform.cs: New. Stub + basic logic.
  70. * XmlDsigXPathTransform.cs: New. Stub + basic logic.
  71. * XmlDsigXsltTransform.cs: New. Stub + basic logic.