ChangeLog 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. 2004-03-04 Atsushi Enomoto <[email protected]>
  2. * KeyInfo.cs :
  3. Fixed LoadXml() to skip text nodes as MS.NET does.
  4. Uncommented out RSAKeyValue.
  5. * Signature.cs : Fixed LoadXml(). Don't use GetElementsByTagName()
  6. that incorrectly acquires descendants. Throw CryptographicException
  7. if required elements were not found.
  8. * Transform.cs : added internal GetResolver().
  9. * XmlDsigXPathTransform.cs,
  10. XmlDsigXsltTransform.cs : use XmlResolver.
  11. 2004-02-19 Tim Coleman <[email protected]>
  12. * SymmetricKeyWrap.cs:
  13. Add AES Key Wrap
  14. * EncryptedXml.cs:
  15. Add calls to SymmetricKeyWrap
  16. 2004-02-11 Sebastien Pouliot <[email protected]>
  17. * Reference.cs: Added LoadInnerXml to transforms. Removed unused
  18. variable.
  19. * Transform.cs: Import GetInnerXml in GetXml.
  20. * XmlDsigBase64Transform.cs: Now use a StreamWriter to avoid multiple
  21. allocations.
  22. * XmlDsigC14NTransform.cs: Added Stream support to LoadInput
  23. * XmlDsigXPathTransform.cs: Fixed GetInnerXml to include xpath
  24. expression and LoadInput. It nows match MS implementation but doesn't
  25. work like I think it should (but neither is MS implementation).
  26. 2004-02-10 Tim Coleman <[email protected]>
  27. * DataReference.cs EncryptedKey.cs EncryptedXml.cs
  28. * KeyInfoEncryptedKey.cs KeyReference.cs ReferenceList.cs
  29. * X509IssuerSerial.cs XmlDecryptionTransform.cs:
  30. Add new classes for Xml Encryption in 1.2
  31. * CipherData.cs CipherReference.cs EncryptedData.cs
  32. * EncryptedReference.cs EncryptionMethod.cs EncryptionProperty.cs :
  33. Change NamespaceURI reference to EncryptedXml class.
  34. Make compliant with 1.2
  35. * XmlEncryption.cs:
  36. Add new entity names.
  37. 2004-02-07 Tim Coleman <[email protected]>
  38. * CipherData.cs CipherReference.cs EncryptedData.cs
  39. * EncryptedReference.cs EncryptedType.cs EncryptionMethod.cs
  40. * EncryptionProperties.cs EncryptionProperty.cs XmlEncryption.cs:
  41. New classes added for Xml Encryption in 1.2
  42. * KeyInfoRetrievalMethod.cs:
  43. Added Type attribute for 1.2
  44. * XmlSignature.cs:
  45. Added string constants for algorithm namespaces
  46. 2004-01-11 Sebastien Pouliot <[email protected]>
  47. * SignedXml.cs: Fixed class signature (for 1.1+) by adding public to
  48. Resolver property.
  49. * Transform.cs: Fixed class signature (for 1.1+) by adding public to
  50. Resolver property.
  51. 2003-12-14 Sebastien Pouliot <[email protected]>
  52. * SignedXml.cs: Now load the public key when verifying (bug #52084)
  53. and can find an element by it's Id when Id isn't defined in DTD or XSD.
  54. 2003-07-27 Sebastien Pouliot <[email protected]>
  55. * XmlSignature.cs: Changed USE_VERSION_1_0 for NET_1_0.
  56. 2003-07-24 Sebastien Pouliot <[email protected]>
  57. * XmlDsigC14NTransform.cs: Patch to use Mono.Xml.XmlCanonicalizer
  58. from Aleksey Sanin.
  59. 2003-06-19 Nick Drochak <[email protected]>
  60. * DSAKeyValue.cs:
  61. * RSAKeyValue.cs: Work around for mcs? bug 45127.
  62. 2003-06-11 Sebastien Pouliot <[email protected]>
  63. * SignedXml.cs: Changed USE_VERSION_1_0 for NET_1_0.
  64. * Transform.cs: Changed USE_VERSION_1_0 for NET_1_0.
  65. 2003-05-25 Sebastien Pouliot <[email protected]>
  66. * XmlSignature.cs: Changed string "RetrievalElement" to "RetrievalMethod"
  67. to match framework 1.1 (this was a bug in framework 1.0).
  68. 2003-05-10 Sebastien Pouliot <[email protected]>
  69. * SignedXml.cs: Added property XmlResolver Resolver as per framework 1.1
  70. documentation (no public declaration).
  71. * Transform.cs: Added property XmlResolver Resolver as per framework 1.1
  72. documentation (no public declaration).
  73. 2003-03-03 Sebastien Pouliot <[email protected]>
  74. * DSAKeyValue.cs: Added patch from Atsushi Eno (to remove string
  75. XML generation).
  76. * RSAKeyValue.cs: Added patch from Atsushi Eno (to remove string
  77. XML generation).
  78. * XmlDsigBase64Transform.cs: Fixed problem when using XPath.
  79. 2003-03-02 Sebastien Pouliot <[email protected]>
  80. * DSAKeyValue.cs: New XML generation is commented. Old string technique
  81. did a better job to match MS implementation.
  82. * DataObject.cs: Replaced XML generation from StringBuilder to XmlElement.
  83. * KeyInfo.cs: Replaced XML generation from StringBuilder to XmlElement.
  84. * KeyInfoName.cs: Replaced XML generation from StringBuilder to XmlElement.
  85. * KeyInfoNode.cs: Replaced XML generation from StringBuilder to XmlElement.
  86. * KeyInfoRetrievalMethod.cs: Replaced XML generation from StringBuilder to XmlElement.
  87. * KeyInfoX509Data.cs: Replaced XML generation from StringBuilder to XmlElement.
  88. * RSAKeyValue.cs: New XML generation is commented. Old string technique
  89. did a better job to match MS implementation.
  90. * Reference.cs: Replaced XML generation from StringBuilder to XmlElement.
  91. * Signature.cs: Replaced XML generation from StringBuilder to XmlElement.
  92. * SignedInfo.cs: Replaced XML generation from StringBuilder to XmlElement.
  93. * SignedXml.cs: Replaced XML generation from StringBuilder to XmlElement.
  94. * Transform.cs: Replaced XML generation from StringBuilder to XmlElement.
  95. * XmlDsigEnvelopedSignatureTransform.cs: Added missing Algorithm URL.
  96. * XmlDsigXPathTransform.cs: Added missing Algorithm URL.
  97. * XmlSignature.cs: New. Private contants (construct similar to WSE).
  98. 2003-02-19 Sebastien Pouliot <[email protected]>
  99. * All: Corrected class indentation, minor fixes, added many MonoTODO (so class status
  100. will reflect reality).
  101. 2003-01-17 Sebastien Pouliot <[email protected]>
  102. * KeyInfo.cs: Changed some protected declaration to private.
  103. * KeyInfoName.cs: Changed some protected declaration to private.
  104. * KeyInfoNode.cs: Changed some protected declaration to private.
  105. * KeyInfoRetrievalMethod.cs: Changed some protected declaration to private.
  106. * KeyInfoX509Data.cs: Changed some protected declaration to private.
  107. * Transform.cs: Changed some protected declaration to private.
  108. * XmlDsigBase64Transform.cs: Changed some protected declaration to private.
  109. * XmlDsigC14NTransform.cs: Changed some protected declaration to private.
  110. * XmlDsigC14NWithCommentsTransform.cs: Changed some protected declaration to private.
  111. * XmlDsigEnvelopedSignatureTransform.cs: Changed some protected declaration to private.
  112. * XmlDsigXPathTransform.cs: Changed some protected declaration to private.
  113. * XmlDsigXsltTransform.cs: Changed some protected declaration to private.
  114. 2002-11-28 Sebastien Pouliot <[email protected]>
  115. * TODOAttribute.cs: New. Still much to do ;-)
  116. * XmlDsigXPathTransform.cs: Corrected to compile. Transform is non-
  117. functionnal.
  118. * XmlDsigXsltTransform.cs: Corrected to compile. Transform is non-
  119. functionnal.
  120. 2002-11-20 Sebastien Pouliot <[email protected]>
  121. * DataObject.cs: New. Complete implementation.
  122. * DSAKeyValue.cs: New. Complete implementation.
  123. * KeyInfo.cs: New. Complete implementation.
  124. * KeyInfoClause.cs: New. Abstract class (complete).
  125. * KeyInfoName.cs: New. Complete implementation.
  126. * KeyInfoNode.cs: New. Complete implementation.
  127. * KeyInfoRetrievalMethod.cs: New. Complete implementation.
  128. * KeyInfoX509Data.cs: New. Complete implementation.
  129. * Reference.cs: New. Incomplete implementation.
  130. * RSAKeyValue.cs: New. Complete implementation.
  131. * Signature.cs: New. Almost complete implementation - returned
  132. XML isn't exactly like the MS implementation.
  133. * SignedInfo.cs: New. Complete except SignatureLength.
  134. * SignedXml.cs: New. Minimal implementation (only enveloped signatures).
  135. Still many TODO!
  136. * Transform.cs: New. Abstract class (complete).
  137. * TransformChain.cs: New. Complete implementation.
  138. * XmlDsigBase64Transform.cs: New. Stub + basic logic.
  139. * XmlDsigC14NTransform.cs: New. Stub + basic logic.
  140. * XmlDsigC14NWithCommentsTransform.cs: New. Stub + basic logic.
  141. * XmlDsigEnvelopedSignatureTransform.cs: New. Stub + basic logic.
  142. * XmlDsigXPathTransform.cs: New. Stub + basic logic.
  143. * XmlDsigXsltTransform.cs: New. Stub + basic logic.