ChangeLog 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. 2004-04-02 Lluis Sanchez Gual <[email protected]>
  2. * XmlDsigEnvelopedSignatureTransform.cs, XmlDsigXPathTransform.cs,
  3. XmlDsigXsltTransform.cs: Fixed build for net_1_0 profile.
  4. 2004-03-30 Sebastien Pouliot <[email protected]>
  5. * Reference.cs: Changed code to use CryptoConfig to create transforms.
  6. This is "the" way to do it (e.g. to allow new transforms to be added)
  7. but cause problems when using VS.NET for debugging. Old code is still
  8. present, but commented, for that cause.
  9. 2004-03-27 Atsushi Enomoto <[email protected]>
  10. * SignedXml.cs : namespace nodes also should be supplied for enveloped
  11. objects.
  12. * KeyInfoRetrievalMethod.cs : Keep input element as well as others.
  13. 2004-03-27 Atsushi Enomoto <[email protected]>
  14. * SignedXml.cs : XPath transformation output is not type of Stream.
  15. Fix to support them by canonicalizing it.
  16. 2004-03-27 Atsushi Enomoto <[email protected]>
  17. * XmlDsigXsltTransform.cs : GetOutput() now just returns
  18. transformation output.
  19. 2004-03-27 Atsushi Enomoto <[email protected]>
  20. * SignedXml.cs : Added xmlns support for Manifest.
  21. 2004-03-26 Sebastien Pouliot <[email protected]>
  22. * Manifest.cs: New. Support for <Manifest> in Xml Digital Signature.
  23. This should help us to validate more tests from the Phaos suite.
  24. Note: Microsoft doesn't support this and we only support it for
  25. verification (not signature generation).
  26. * SignedXml.cs: Added support for Manifest, including recursive
  27. manifests. Made some changes to reuse existing code as much as
  28. possible. Better support for local/remote files - but requires
  29. catching an Uri exception for local files :-(.
  30. * XmlSignature.cs: Added constants for Manifest element and URI.
  31. 2004-03-26 Atsushi Enomoto <[email protected]>
  32. * SignedXml.cs :
  33. - Use specified (or default) XmlResolver to get external resource,
  34. instead of using WebRequest directly. Also modified it easier.
  35. - ApplyTransform() : Clone only when it is required. Handle
  36. transformation output other than Stream.
  37. - Even if applicable key was not found in GetHash(), don't throw
  38. crypto exception every time and just return false (MS does it).
  39. Throw an exception only when no key was specified as KeyInfo.
  40. * XmlDsigEnvelopedSignatureTransform.cs : Fixed get_OutputTypes which
  41. incorrectly set InputTypes internally.
  42. * XmlDsigXPathTransform.cs : Context namespace nodes in loaded
  43. transform parameter (i.e. <XPath>..</XPath>) should be registered
  44. to XsltContext. Otherwise prefix binding error occurs.
  45. Just filter attribute node, instead of filtering attribute children.
  46. 2004-03-25 Sebastien Pouliot <[email protected]>
  47. * SignedXml.cs: Added try/catch in CheckSignatureWithKey to return
  48. false on exceptions. Fix signature-rsa-detached-xslt-transform-bad
  49. -retrieval-method.xml in the Phaos test suite.
  50. 2004-03-24 Atsushi Enomoto <[email protected]>
  51. * Reference.cs, Signature.cs : They should keep input element and hence
  52. keep namespace context nodes on LoadXml() as same as SignedInfo.
  53. * SignedXml.cs : Fixed SignedInfoTransformed() to fill context
  54. namespace nodes into the input document (unlike other classes, there
  55. seems no other way to keep ns-nodes here).
  56. Now some of W3C phaos xmldsig test passes.
  57. 2004-03-23 Atsushi Enomoto <[email protected]>
  58. * SignedInfo.cs : It holds input element and directly returns it
  59. unless the properties are not set.
  60. Throw CryptographicException when Reference is empty *and* GetXml()
  61. is *created*. (when just returning input element, no exception is
  62. thrown).
  63. 2004-03-23 Atsushi Enomoto <[email protected]>
  64. * DataObject.cs : It now holds element instead of each parameters.
  65. Avoid loading element content to different document unless its
  66. properties were modified (to keep namespace node context).
  67. 2004-03-20 Sebastien Pouliot <[email protected]>
  68. * SignedXml.cs: Removed unused (and commented) ComputeHash method.
  69. 2004-03-19 Atsushi Enomoto <[email protected]>
  70. * XmlDsigXPathTransform.cs : just found stupid bug.
  71. 2004-03-19 Sebastien Pouliot <[email protected]>
  72. * SignedXml.cs: Lot of small changes to complete TODOs and to match
  73. the new unit tests.
  74. 2004-03-17 Sebastien Pouliot <[email protected]>
  75. * SignedXml.cs: The old method was working for creating signature -
  76. so it was reintroduced for (only) this case.
  77. 2004-03-17 Atsushi Enomoto <[email protected]>
  78. * SignedXml.cs : the result from enveloped signature transform should
  79. be canonicalized before getting its hash.
  80. * XmlDsigEnvelopedSignatureTransform.cs : in XPath selection,
  81. if the node is Signature itself it is not allowed.
  82. PreserveWhitespace is required.
  83. 2004-03-16 Sebastien Pouliot <[email protected]>
  84. * SignedXml.cs: Changed (again). This time we use the Stream when
  85. loading the document. We now pass 14 out of 15 of the Merlin's
  86. tests (including one that MS fails). The only failing test is the
  87. one that use the EnvelopedTransform (unfinished).
  88. 2004-03-16 Sebastien Pouliot <[email protected]>
  89. * SignedXml.cs: Commented my last changes to SignedXml as it made other
  90. unis tests fail (in the c14n-izer).
  91. 2004-03-16 Atsushi Enomoto <[email protected]>
  92. * XmlDsigNodeList.cs : removed BOM from code file.
  93. 2004-03-16 Atsushi Enomoto <[email protected]>
  94. * XmlDsigNodeList.cs : added.
  95. * XmlDsigXPathTransform.cs : removed XmlDsigNodeList class.
  96. * XmlDsigEnvelopedSignatureTransform.cs :
  97. Implemented GetOutput(). However, it is totally MS behavior
  98. dependent and not based on the spec (we can reimplement it based on
  99. improved XmlDsigXPathTransform).
  100. * SignedXml.cs : in GetOutput(), accept XmlNodeList input too.
  101. 2004-03-15 Sebastien Pouliot <[email protected]>
  102. * SignedXml.cs: Now use the original Signature element before applying
  103. the C14N transformation. Added a check for null in LoadXml.
  104. 2004-03-14 Atsushi Enomoto <[email protected]>
  105. * XmlDsigXPathTransform.cs : implemented GetOutput() (with some
  106. internal XPath context classes).
  107. 2004-03-13 Atsushi Enomoto <[email protected]>
  108. * XmlDsigXsltTransform.cs : LoadInnerXml() should just load stylesheet
  109. and LoadInput() should just load transformed document.
  110. Transformation should be done in GetOutput() because either of the
  111. stylesheet or input can be loaded in prior. Adjusted code format.
  112. 2004-03-12 Sebastien Pouliot <[email protected]>
  113. * Signature.cs: KeyInfo isn't required in schema.
  114. * SignedInfo.cs: Added support for missing HMACOutputLength.
  115. * SignedXml.cs: Added support to download a reference (experimental).
  116. Now throw exception for unknown hash algorithm or canonicalization
  117. methods. Changed GetPublicKey to iterate all available keys (not just
  118. the first one).
  119. 2004-03-09 Atsushi Enomoto <[email protected]>
  120. * KeyInfo.cs : Attribute Id was not handlded.
  121. * KeyInfoX509Data.cs : all array members return null when there are
  122. no such contents. Just find child elements, not descendants.
  123. * SignedXml.cs : key is not always required when CheckSignature() is
  124. called.
  125. * XmlDsigXsltTransform.cs : LoadInput should allow node list.
  126. * XmlSignature.cs : added GetChildElements().
  127. 2004-03-09 Atsushi Enomoto <[email protected]>
  128. * KeyInfoX509Data.cs : trivial local var name fix.
  129. 2004-03-09 Atsushi Enomoto <[email protected]>
  130. * KeyInfoX509Data.cs,
  131. Reference.cs,
  132. SignedInfo.cs,
  133. XmlSignature.cs : GetElementsByTagName() should be eliminated or
  134. at least should use namespace URI.
  135. 2004-03-04 Atsushi Enomoto <[email protected]>
  136. * KeyInfo.cs :
  137. Fixed LoadXml() to skip text nodes as MS.NET does.
  138. Uncommented out RSAKeyValue.
  139. * Signature.cs : Fixed LoadXml(). Don't use GetElementsByTagName()
  140. that incorrectly acquires descendants. Throw CryptographicException
  141. if required elements were not found.
  142. * Transform.cs : added internal GetResolver().
  143. * XmlDsigXPathTransform.cs,
  144. XmlDsigXsltTransform.cs : use XmlResolver.
  145. 2004-02-19 Tim Coleman <[email protected]>
  146. * SymmetricKeyWrap.cs:
  147. Add AES Key Wrap
  148. * EncryptedXml.cs:
  149. Add calls to SymmetricKeyWrap
  150. 2004-02-11 Sebastien Pouliot <[email protected]>
  151. * Reference.cs: Added LoadInnerXml to transforms. Removed unused
  152. variable.
  153. * Transform.cs: Import GetInnerXml in GetXml.
  154. * XmlDsigBase64Transform.cs: Now use a StreamWriter to avoid multiple
  155. allocations.
  156. * XmlDsigC14NTransform.cs: Added Stream support to LoadInput
  157. * XmlDsigXPathTransform.cs: Fixed GetInnerXml to include xpath
  158. expression and LoadInput. It nows match MS implementation but doesn't
  159. work like I think it should (but neither is MS implementation).
  160. 2004-02-10 Tim Coleman <[email protected]>
  161. * DataReference.cs EncryptedKey.cs EncryptedXml.cs
  162. * KeyInfoEncryptedKey.cs KeyReference.cs ReferenceList.cs
  163. * X509IssuerSerial.cs XmlDecryptionTransform.cs:
  164. Add new classes for Xml Encryption in 1.2
  165. * CipherData.cs CipherReference.cs EncryptedData.cs
  166. * EncryptedReference.cs EncryptionMethod.cs EncryptionProperty.cs :
  167. Change NamespaceURI reference to EncryptedXml class.
  168. Make compliant with 1.2
  169. * XmlEncryption.cs:
  170. Add new entity names.
  171. 2004-02-07 Tim Coleman <[email protected]>
  172. * CipherData.cs CipherReference.cs EncryptedData.cs
  173. * EncryptedReference.cs EncryptedType.cs EncryptionMethod.cs
  174. * EncryptionProperties.cs EncryptionProperty.cs XmlEncryption.cs:
  175. New classes added for Xml Encryption in 1.2
  176. * KeyInfoRetrievalMethod.cs:
  177. Added Type attribute for 1.2
  178. * XmlSignature.cs:
  179. Added string constants for algorithm namespaces
  180. 2004-01-11 Sebastien Pouliot <[email protected]>
  181. * SignedXml.cs: Fixed class signature (for 1.1+) by adding public to
  182. Resolver property.
  183. * Transform.cs: Fixed class signature (for 1.1+) by adding public to
  184. Resolver property.
  185. 2003-12-14 Sebastien Pouliot <[email protected]>
  186. * SignedXml.cs: Now load the public key when verifying (bug #52084)
  187. and can find an element by it's Id when Id isn't defined in DTD or XSD.
  188. 2003-07-27 Sebastien Pouliot <[email protected]>
  189. * XmlSignature.cs: Changed USE_VERSION_1_0 for NET_1_0.
  190. 2003-07-24 Sebastien Pouliot <[email protected]>
  191. * XmlDsigC14NTransform.cs: Patch to use Mono.Xml.XmlCanonicalizer
  192. from Aleksey Sanin.
  193. 2003-06-19 Nick Drochak <[email protected]>
  194. * DSAKeyValue.cs:
  195. * RSAKeyValue.cs: Work around for mcs? bug 45127.
  196. 2003-06-11 Sebastien Pouliot <[email protected]>
  197. * SignedXml.cs: Changed USE_VERSION_1_0 for NET_1_0.
  198. * Transform.cs: Changed USE_VERSION_1_0 for NET_1_0.
  199. 2003-05-25 Sebastien Pouliot <[email protected]>
  200. * XmlSignature.cs: Changed string "RetrievalElement" to "RetrievalMethod"
  201. to match framework 1.1 (this was a bug in framework 1.0).
  202. 2003-05-10 Sebastien Pouliot <[email protected]>
  203. * SignedXml.cs: Added property XmlResolver Resolver as per framework 1.1
  204. documentation (no public declaration).
  205. * Transform.cs: Added property XmlResolver Resolver as per framework 1.1
  206. documentation (no public declaration).
  207. 2003-03-03 Sebastien Pouliot <[email protected]>
  208. * DSAKeyValue.cs: Added patch from Atsushi Eno (to remove string
  209. XML generation).
  210. * RSAKeyValue.cs: Added patch from Atsushi Eno (to remove string
  211. XML generation).
  212. * XmlDsigBase64Transform.cs: Fixed problem when using XPath.
  213. 2003-03-02 Sebastien Pouliot <[email protected]>
  214. * DSAKeyValue.cs: New XML generation is commented. Old string technique
  215. did a better job to match MS implementation.
  216. * DataObject.cs: Replaced XML generation from StringBuilder to XmlElement.
  217. * KeyInfo.cs: Replaced XML generation from StringBuilder to XmlElement.
  218. * KeyInfoName.cs: Replaced XML generation from StringBuilder to XmlElement.
  219. * KeyInfoNode.cs: Replaced XML generation from StringBuilder to XmlElement.
  220. * KeyInfoRetrievalMethod.cs: Replaced XML generation from StringBuilder to XmlElement.
  221. * KeyInfoX509Data.cs: Replaced XML generation from StringBuilder to XmlElement.
  222. * RSAKeyValue.cs: New XML generation is commented. Old string technique
  223. did a better job to match MS implementation.
  224. * Reference.cs: Replaced XML generation from StringBuilder to XmlElement.
  225. * Signature.cs: Replaced XML generation from StringBuilder to XmlElement.
  226. * SignedInfo.cs: Replaced XML generation from StringBuilder to XmlElement.
  227. * SignedXml.cs: Replaced XML generation from StringBuilder to XmlElement.
  228. * Transform.cs: Replaced XML generation from StringBuilder to XmlElement.
  229. * XmlDsigEnvelopedSignatureTransform.cs: Added missing Algorithm URL.
  230. * XmlDsigXPathTransform.cs: Added missing Algorithm URL.
  231. * XmlSignature.cs: New. Private contants (construct similar to WSE).
  232. 2003-02-19 Sebastien Pouliot <[email protected]>
  233. * All: Corrected class indentation, minor fixes, added many MonoTODO (so class status
  234. will reflect reality).
  235. 2003-01-17 Sebastien Pouliot <[email protected]>
  236. * KeyInfo.cs: Changed some protected declaration to private.
  237. * KeyInfoName.cs: Changed some protected declaration to private.
  238. * KeyInfoNode.cs: Changed some protected declaration to private.
  239. * KeyInfoRetrievalMethod.cs: Changed some protected declaration to private.
  240. * KeyInfoX509Data.cs: Changed some protected declaration to private.
  241. * Transform.cs: Changed some protected declaration to private.
  242. * XmlDsigBase64Transform.cs: Changed some protected declaration to private.
  243. * XmlDsigC14NTransform.cs: Changed some protected declaration to private.
  244. * XmlDsigC14NWithCommentsTransform.cs: Changed some protected declaration to private.
  245. * XmlDsigEnvelopedSignatureTransform.cs: Changed some protected declaration to private.
  246. * XmlDsigXPathTransform.cs: Changed some protected declaration to private.
  247. * XmlDsigXsltTransform.cs: Changed some protected declaration to private.
  248. 2002-11-28 Sebastien Pouliot <[email protected]>
  249. * TODOAttribute.cs: New. Still much to do ;-)
  250. * XmlDsigXPathTransform.cs: Corrected to compile. Transform is non-
  251. functionnal.
  252. * XmlDsigXsltTransform.cs: Corrected to compile. Transform is non-
  253. functionnal.
  254. 2002-11-20 Sebastien Pouliot <[email protected]>
  255. * DataObject.cs: New. Complete implementation.
  256. * DSAKeyValue.cs: New. Complete implementation.
  257. * KeyInfo.cs: New. Complete implementation.
  258. * KeyInfoClause.cs: New. Abstract class (complete).
  259. * KeyInfoName.cs: New. Complete implementation.
  260. * KeyInfoNode.cs: New. Complete implementation.
  261. * KeyInfoRetrievalMethod.cs: New. Complete implementation.
  262. * KeyInfoX509Data.cs: New. Complete implementation.
  263. * Reference.cs: New. Incomplete implementation.
  264. * RSAKeyValue.cs: New. Complete implementation.
  265. * Signature.cs: New. Almost complete implementation - returned
  266. XML isn't exactly like the MS implementation.
  267. * SignedInfo.cs: New. Complete except SignatureLength.
  268. * SignedXml.cs: New. Minimal implementation (only enveloped signatures).
  269. Still many TODO!
  270. * Transform.cs: New. Abstract class (complete).
  271. * TransformChain.cs: New. Complete implementation.
  272. * XmlDsigBase64Transform.cs: New. Stub + basic logic.
  273. * XmlDsigC14NTransform.cs: New. Stub + basic logic.
  274. * XmlDsigC14NWithCommentsTransform.cs: New. Stub + basic logic.
  275. * XmlDsigEnvelopedSignatureTransform.cs: New. Stub + basic logic.
  276. * XmlDsigXPathTransform.cs: New. Stub + basic logic.
  277. * XmlDsigXsltTransform.cs: New. Stub + basic logic.