ChangeLog 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. 2003-07-27 Sebastien Pouliot <[email protected]>
  2. * XmlSignature.cs: Changed USE_VERSION_1_0 for NET_1_0.
  3. 2003-07-24 Sebastien Pouliot <[email protected]>
  4. * XmlDsigC14NTransform.cs: Patch to use Mono.Xml.XmlCanonicalizer
  5. from Aleksey Sanin.
  6. 2003-06-19 Nick Drochak <[email protected]>
  7. * DSAKeyValue.cs:
  8. * RSAKeyValue.cs: Work around for mcs? bug 45127.
  9. 2003-06-11 Sebastien Pouliot <[email protected]>
  10. * SignedXml.cs: Changed USE_VERSION_1_0 for NET_1_0.
  11. * Transform.cs: Changed USE_VERSION_1_0 for NET_1_0.
  12. 2003-05-25 Sebastien Pouliot <[email protected]>
  13. * XmlSignature.cs: Changed string "RetrievalElement" to "RetrievalMethod"
  14. to match framework 1.1 (this was a bug in framework 1.0).
  15. 2003-05-10 Sebastien Pouliot <[email protected]>
  16. * SignedXml.cs: Added property XmlResolver Resolver as per framework 1.1
  17. documentation (no public declaration).
  18. * Transform.cs: Added property XmlResolver Resolver as per framework 1.1
  19. documentation (no public declaration).
  20. 2003-03-03 Sebastien Pouliot <[email protected]>
  21. * DSAKeyValue.cs: Added patch from Atsushi Eno (to remove string
  22. XML generation).
  23. * RSAKeyValue.cs: Added patch from Atsushi Eno (to remove string
  24. XML generation).
  25. * XmlDsigBase64Transform.cs: Fixed problem when using XPath.
  26. 2003-03-02 Sebastien Pouliot <[email protected]>
  27. * DSAKeyValue.cs: New XML generation is commented. Old string technique
  28. did a better job to match MS implementation.
  29. * DataObject.cs: Replaced XML generation from StringBuilder to XmlElement.
  30. * KeyInfo.cs: Replaced XML generation from StringBuilder to XmlElement.
  31. * KeyInfoName.cs: Replaced XML generation from StringBuilder to XmlElement.
  32. * KeyInfoNode.cs: Replaced XML generation from StringBuilder to XmlElement.
  33. * KeyInfoRetrievalMethod.cs: Replaced XML generation from StringBuilder to XmlElement.
  34. * KeyInfoX509Data.cs: Replaced XML generation from StringBuilder to XmlElement.
  35. * RSAKeyValue.cs: New XML generation is commented. Old string technique
  36. did a better job to match MS implementation.
  37. * Reference.cs: Replaced XML generation from StringBuilder to XmlElement.
  38. * Signature.cs: Replaced XML generation from StringBuilder to XmlElement.
  39. * SignedInfo.cs: Replaced XML generation from StringBuilder to XmlElement.
  40. * SignedXml.cs: Replaced XML generation from StringBuilder to XmlElement.
  41. * Transform.cs: Replaced XML generation from StringBuilder to XmlElement.
  42. * XmlDsigEnvelopedSignatureTransform.cs: Added missing Algorithm URL.
  43. * XmlDsigXPathTransform.cs: Added missing Algorithm URL.
  44. * XmlSignature.cs: New. Private contants (construct similar to WSE).
  45. 2003-02-19 Sebastien Pouliot <[email protected]>
  46. * All: Corrected class indentation, minor fixes, added many MonoTODO (so class status
  47. will reflect reality).
  48. 2003-01-17 Sebastien Pouliot <[email protected]>
  49. * KeyInfo.cs: Changed some protected declaration to private.
  50. * KeyInfoName.cs: Changed some protected declaration to private.
  51. * KeyInfoNode.cs: Changed some protected declaration to private.
  52. * KeyInfoRetrievalMethod.cs: Changed some protected declaration to private.
  53. * KeyInfoX509Data.cs: Changed some protected declaration to private.
  54. * Transform.cs: Changed some protected declaration to private.
  55. * XmlDsigBase64Transform.cs: Changed some protected declaration to private.
  56. * XmlDsigC14NTransform.cs: Changed some protected declaration to private.
  57. * XmlDsigC14NWithCommentsTransform.cs: Changed some protected declaration to private.
  58. * XmlDsigEnvelopedSignatureTransform.cs: Changed some protected declaration to private.
  59. * XmlDsigXPathTransform.cs: Changed some protected declaration to private.
  60. * XmlDsigXsltTransform.cs: Changed some protected declaration to private.
  61. 2002-11-28 Sebastien Pouliot <[email protected]>
  62. * TODOAttribute.cs: New. Still much to do ;-)
  63. * XmlDsigXPathTransform.cs: Corrected to compile. Transform is non-
  64. functionnal.
  65. * XmlDsigXsltTransform.cs: Corrected to compile. Transform is non-
  66. functionnal.
  67. 2002-11-20 Sebastien Pouliot <[email protected]>
  68. * DataObject.cs: New. Complete implementation.
  69. * DSAKeyValue.cs: New. Complete implementation.
  70. * KeyInfo.cs: New. Complete implementation.
  71. * KeyInfoClause.cs: New. Abstract class (complete).
  72. * KeyInfoName.cs: New. Complete implementation.
  73. * KeyInfoNode.cs: New. Complete implementation.
  74. * KeyInfoRetrievalMethod.cs: New. Complete implementation.
  75. * KeyInfoX509Data.cs: New. Complete implementation.
  76. * Reference.cs: New. Incomplete implementation.
  77. * RSAKeyValue.cs: New. Complete implementation.
  78. * Signature.cs: New. Almost complete implementation - returned
  79. XML isn't exactly like the MS implementation.
  80. * SignedInfo.cs: New. Complete except SignatureLength.
  81. * SignedXml.cs: New. Minimal implementation (only enveloped signatures).
  82. Still many TODO!
  83. * Transform.cs: New. Abstract class (complete).
  84. * TransformChain.cs: New. Complete implementation.
  85. * XmlDsigBase64Transform.cs: New. Stub + basic logic.
  86. * XmlDsigC14NTransform.cs: New. Stub + basic logic.
  87. * XmlDsigC14NWithCommentsTransform.cs: New. Stub + basic logic.
  88. * XmlDsigEnvelopedSignatureTransform.cs: New. Stub + basic logic.
  89. * XmlDsigXPathTransform.cs: New. Stub + basic logic.
  90. * XmlDsigXsltTransform.cs: New. Stub + basic logic.