ChangeLog 4.9 KB

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