ChangeLog 10 KB

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