ChangeLog 6.0 KB

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