ChangeLog 9.0 KB

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