ChangeLog 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. 2004-03-16 Atsushi Enomoto <[email protected]>
  2. * XmlDsigNodeList.cs : removed BOM from code file.
  3. 2004-03-16 Atsushi Enomoto <[email protected]>
  4. * XmlDsigNodeList.cs : added.
  5. * XmlDsigXPathTransform.cs : removed XmlDsigNodeList class.
  6. * XmlDsigEnvelopedSignatureTransform.cs :
  7. Implemented GetOutput(). However, it is totally MS behavior
  8. dependent and not based on the spec (we can reimplement it based on
  9. improved XmlDsigXPathTransform).
  10. * SignedXml.cs : in GetOutput(), accept XmlNodeList input too.
  11. 2004-03-15 Sebastien Pouliot <[email protected]>
  12. * SignedXml.cs: Now use the original Signature element before applying
  13. the C14N transformation. Added a check for null in LoadXml.
  14. 2004-03-14 Atsushi Enomoto <[email protected]>
  15. * XmlDsigXPathTransform.cs : implemented GetOutput() (with some
  16. internal XPath context classes).
  17. 2004-03-13 Atsushi Enomoto <[email protected]>
  18. * XmlDsigXsltTransform.cs : LoadInnerXml() should just load stylesheet
  19. and LoadInput() should just load transformed document.
  20. Transformation should be done in GetOutput() because either of the
  21. stylesheet or input can be loaded in prior. Adjusted code format.
  22. 2004-03-12 Sebastien Pouliot <[email protected]>
  23. * Signature.cs: KeyInfo isn't required in schema.
  24. * SignedInfo.cs: Added support for missing HMACOutputLength.
  25. * SignedXml.cs: Added support to download a reference (experimental).
  26. Now throw exception for unknown hash algorithm or canonicalization
  27. methods. Changed GetPublicKey to iterate all available keys (not just
  28. the first one).
  29. 2004-03-09 Atsushi Enomoto <[email protected]>
  30. * KeyInfo.cs : Attribute Id was not handlded.
  31. * KeyInfoX509Data.cs : all array members return null when there are
  32. no such contents. Just find child elements, not descendants.
  33. * SignedXml.cs : key is not always required when CheckSignature() is
  34. called.
  35. * XmlDsigXsltTransform.cs : LoadInput should allow node list.
  36. * XmlSignature.cs : added GetChildElements().
  37. 2004-03-09 Atsushi Enomoto <[email protected]>
  38. * KeyInfoX509Data.cs : trivial local var name fix.
  39. 2004-03-09 Atsushi Enomoto <[email protected]>
  40. * KeyInfoX509Data.cs,
  41. Reference.cs,
  42. SignedInfo.cs,
  43. XmlSignature.cs : GetElementsByTagName() should be eliminated or
  44. at least should use namespace URI.
  45. 2004-03-04 Atsushi Enomoto <[email protected]>
  46. * KeyInfo.cs :
  47. Fixed LoadXml() to skip text nodes as MS.NET does.
  48. Uncommented out RSAKeyValue.
  49. * Signature.cs : Fixed LoadXml(). Don't use GetElementsByTagName()
  50. that incorrectly acquires descendants. Throw CryptographicException
  51. if required elements were not found.
  52. * Transform.cs : added internal GetResolver().
  53. * XmlDsigXPathTransform.cs,
  54. XmlDsigXsltTransform.cs : use XmlResolver.
  55. 2004-02-19 Tim Coleman <[email protected]>
  56. * SymmetricKeyWrap.cs:
  57. Add AES Key Wrap
  58. * EncryptedXml.cs:
  59. Add calls to SymmetricKeyWrap
  60. 2004-02-11 Sebastien Pouliot <[email protected]>
  61. * Reference.cs: Added LoadInnerXml to transforms. Removed unused
  62. variable.
  63. * Transform.cs: Import GetInnerXml in GetXml.
  64. * XmlDsigBase64Transform.cs: Now use a StreamWriter to avoid multiple
  65. allocations.
  66. * XmlDsigC14NTransform.cs: Added Stream support to LoadInput
  67. * XmlDsigXPathTransform.cs: Fixed GetInnerXml to include xpath
  68. expression and LoadInput. It nows match MS implementation but doesn't
  69. work like I think it should (but neither is MS implementation).
  70. 2004-02-10 Tim Coleman <[email protected]>
  71. * DataReference.cs EncryptedKey.cs EncryptedXml.cs
  72. * KeyInfoEncryptedKey.cs KeyReference.cs ReferenceList.cs
  73. * X509IssuerSerial.cs XmlDecryptionTransform.cs:
  74. Add new classes for Xml Encryption in 1.2
  75. * CipherData.cs CipherReference.cs EncryptedData.cs
  76. * EncryptedReference.cs EncryptionMethod.cs EncryptionProperty.cs :
  77. Change NamespaceURI reference to EncryptedXml class.
  78. Make compliant with 1.2
  79. * XmlEncryption.cs:
  80. Add new entity names.
  81. 2004-02-07 Tim Coleman <[email protected]>
  82. * CipherData.cs CipherReference.cs EncryptedData.cs
  83. * EncryptedReference.cs EncryptedType.cs EncryptionMethod.cs
  84. * EncryptionProperties.cs EncryptionProperty.cs XmlEncryption.cs:
  85. New classes added for Xml Encryption in 1.2
  86. * KeyInfoRetrievalMethod.cs:
  87. Added Type attribute for 1.2
  88. * XmlSignature.cs:
  89. Added string constants for algorithm namespaces
  90. 2004-01-11 Sebastien Pouliot <[email protected]>
  91. * SignedXml.cs: Fixed class signature (for 1.1+) by adding public to
  92. Resolver property.
  93. * Transform.cs: Fixed class signature (for 1.1+) by adding public to
  94. Resolver property.
  95. 2003-12-14 Sebastien Pouliot <[email protected]>
  96. * SignedXml.cs: Now load the public key when verifying (bug #52084)
  97. and can find an element by it's Id when Id isn't defined in DTD or XSD.
  98. 2003-07-27 Sebastien Pouliot <[email protected]>
  99. * XmlSignature.cs: Changed USE_VERSION_1_0 for NET_1_0.
  100. 2003-07-24 Sebastien Pouliot <[email protected]>
  101. * XmlDsigC14NTransform.cs: Patch to use Mono.Xml.XmlCanonicalizer
  102. from Aleksey Sanin.
  103. 2003-06-19 Nick Drochak <[email protected]>
  104. * DSAKeyValue.cs:
  105. * RSAKeyValue.cs: Work around for mcs? bug 45127.
  106. 2003-06-11 Sebastien Pouliot <[email protected]>
  107. * SignedXml.cs: Changed USE_VERSION_1_0 for NET_1_0.
  108. * Transform.cs: Changed USE_VERSION_1_0 for NET_1_0.
  109. 2003-05-25 Sebastien Pouliot <[email protected]>
  110. * XmlSignature.cs: Changed string "RetrievalElement" to "RetrievalMethod"
  111. to match framework 1.1 (this was a bug in framework 1.0).
  112. 2003-05-10 Sebastien Pouliot <[email protected]>
  113. * SignedXml.cs: Added property XmlResolver Resolver as per framework 1.1
  114. documentation (no public declaration).
  115. * Transform.cs: Added property XmlResolver Resolver as per framework 1.1
  116. documentation (no public declaration).
  117. 2003-03-03 Sebastien Pouliot <[email protected]>
  118. * DSAKeyValue.cs: Added patch from Atsushi Eno (to remove string
  119. XML generation).
  120. * RSAKeyValue.cs: Added patch from Atsushi Eno (to remove string
  121. XML generation).
  122. * XmlDsigBase64Transform.cs: Fixed problem when using XPath.
  123. 2003-03-02 Sebastien Pouliot <[email protected]>
  124. * DSAKeyValue.cs: New XML generation is commented. Old string technique
  125. did a better job to match MS implementation.
  126. * DataObject.cs: Replaced XML generation from StringBuilder to XmlElement.
  127. * KeyInfo.cs: Replaced XML generation from StringBuilder to XmlElement.
  128. * KeyInfoName.cs: Replaced XML generation from StringBuilder to XmlElement.
  129. * KeyInfoNode.cs: Replaced XML generation from StringBuilder to XmlElement.
  130. * KeyInfoRetrievalMethod.cs: Replaced XML generation from StringBuilder to XmlElement.
  131. * KeyInfoX509Data.cs: Replaced XML generation from StringBuilder to XmlElement.
  132. * RSAKeyValue.cs: New XML generation is commented. Old string technique
  133. did a better job to match MS implementation.
  134. * Reference.cs: Replaced XML generation from StringBuilder to XmlElement.
  135. * Signature.cs: Replaced XML generation from StringBuilder to XmlElement.
  136. * SignedInfo.cs: Replaced XML generation from StringBuilder to XmlElement.
  137. * SignedXml.cs: Replaced XML generation from StringBuilder to XmlElement.
  138. * Transform.cs: Replaced XML generation from StringBuilder to XmlElement.
  139. * XmlDsigEnvelopedSignatureTransform.cs: Added missing Algorithm URL.
  140. * XmlDsigXPathTransform.cs: Added missing Algorithm URL.
  141. * XmlSignature.cs: New. Private contants (construct similar to WSE).
  142. 2003-02-19 Sebastien Pouliot <[email protected]>
  143. * All: Corrected class indentation, minor fixes, added many MonoTODO (so class status
  144. will reflect reality).
  145. 2003-01-17 Sebastien Pouliot <[email protected]>
  146. * KeyInfo.cs: Changed some protected declaration to private.
  147. * KeyInfoName.cs: Changed some protected declaration to private.
  148. * KeyInfoNode.cs: Changed some protected declaration to private.
  149. * KeyInfoRetrievalMethod.cs: Changed some protected declaration to private.
  150. * KeyInfoX509Data.cs: Changed some protected declaration to private.
  151. * Transform.cs: Changed some protected declaration to private.
  152. * XmlDsigBase64Transform.cs: Changed some protected declaration to private.
  153. * XmlDsigC14NTransform.cs: Changed some protected declaration to private.
  154. * XmlDsigC14NWithCommentsTransform.cs: Changed some protected declaration to private.
  155. * XmlDsigEnvelopedSignatureTransform.cs: Changed some protected declaration to private.
  156. * XmlDsigXPathTransform.cs: Changed some protected declaration to private.
  157. * XmlDsigXsltTransform.cs: Changed some protected declaration to private.
  158. 2002-11-28 Sebastien Pouliot <[email protected]>
  159. * TODOAttribute.cs: New. Still much to do ;-)
  160. * XmlDsigXPathTransform.cs: Corrected to compile. Transform is non-
  161. functionnal.
  162. * XmlDsigXsltTransform.cs: Corrected to compile. Transform is non-
  163. functionnal.
  164. 2002-11-20 Sebastien Pouliot <[email protected]>
  165. * DataObject.cs: New. Complete implementation.
  166. * DSAKeyValue.cs: New. Complete implementation.
  167. * KeyInfo.cs: New. Complete implementation.
  168. * KeyInfoClause.cs: New. Abstract class (complete).
  169. * KeyInfoName.cs: New. Complete implementation.
  170. * KeyInfoNode.cs: New. Complete implementation.
  171. * KeyInfoRetrievalMethod.cs: New. Complete implementation.
  172. * KeyInfoX509Data.cs: New. Complete implementation.
  173. * Reference.cs: New. Incomplete implementation.
  174. * RSAKeyValue.cs: New. Complete implementation.
  175. * Signature.cs: New. Almost complete implementation - returned
  176. XML isn't exactly like the MS implementation.
  177. * SignedInfo.cs: New. Complete except SignatureLength.
  178. * SignedXml.cs: New. Minimal implementation (only enveloped signatures).
  179. Still many TODO!
  180. * Transform.cs: New. Abstract class (complete).
  181. * TransformChain.cs: New. Complete implementation.
  182. * XmlDsigBase64Transform.cs: New. Stub + basic logic.
  183. * XmlDsigC14NTransform.cs: New. Stub + basic logic.
  184. * XmlDsigC14NWithCommentsTransform.cs: New. Stub + basic logic.
  185. * XmlDsigEnvelopedSignatureTransform.cs: New. Stub + basic logic.
  186. * XmlDsigXPathTransform.cs: New. Stub + basic logic.
  187. * XmlDsigXsltTransform.cs: New. Stub + basic logic.