ChangeLog 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594
  1. 2006-01-30 Atsushi Enomoto <[email protected]>
  2. * XmlDsigEnvelopedSignatureTransform.cs :
  3. It should not remove nodes in another XmlNodeList while its
  4. iterator is in active use. This is exposed by the recent
  5. XmlNodeList change.
  6. 2005-09-27 Sebastien Pouliot <[email protected]>
  7. * KeyInfoX509Data.cs: Remove old 2.0 specific check.
  8. * XmlDsigXPathTransform.cs: Remove old 2.0 specific check. Return
  9. empty node list of the XmlDocument is null (fixed tests case for 2.0
  10. RC).
  11. 2005-05-09 Sebastien Pouliot <[email protected]>
  12. * EncryptionProperties.cs: Added [IndexerName] attribute to rename
  13. "this" from Item to ItemOf. Added missing Item(int) method.
  14. * ReferenceList.cs: Added [IndexerName] attribute to rename "this"
  15. from Item to ItemOf.
  16. 2005-05-04 Sebastien Pouliot <[email protected]>
  17. * SignedXml.cs: Return an empty (not null) KeyInfo by default and
  18. don't throw a CryptographicException in CheckSignature (both NET_2_0).
  19. * KeyInfoRetrievalMethod.cs: Don't include an empty URI attribute
  20. in the XML output for NET_2_0.
  21. * XmlDsigXPathTransform.cs: Throw an XPathException in NET_2_0 if no
  22. xpath expression has been supplied to the transform.
  23. 2005-05-03 Sebastien Pouliot <[email protected]>
  24. * XmlDsigXsltTransform.cs: Fixed 2 test cases (that nows throws
  25. ArgumentNullException) in 2.0.
  26. 2005-05-02 Sebastien Pouliot <[email protected]>
  27. * SignedXml.cs: Throw ArgumentNullException in AddObject and
  28. AddReference methods in 2.0.
  29. * XmlDsigC14NTransform.cs: Throw ArgumentException when loading from
  30. an unknown type in 2.0 (it was simply ignored in 1.x).
  31. 2005-04-26 Sebastien Pouliot <[email protected]>
  32. * KeyInfoX509Data.cs: Fixed to work biwht unit tests on both NET_1_1
  33. and NET_2_0 (except for obvious beta2 bugs). ArraList are now only
  34. created when required.
  35. 2005-04-25 Sebastien Pouliot <[email protected]>
  36. * EncryptedData.cs: Avoid re-creating collection object on load.
  37. * EncryptedKey.cs: Fix compiler warning (unused variables).
  38. * EncryptedType.cs: Remove set on EncryptionProperties property.
  39. * IRelDecryptor.cs: New. Interface for XrML support.
  40. * SymmetricKeyWrap.cs: Comment unused static method Xor(byte[],int).
  41. * XmlDecryptionTransform.cs: Fix compiler warning (unused variable).
  42. * XmlDsigEnvelopedSignatureTransform.cs: Fix compiler warning.
  43. * XmlLicenseTransform.cs: New. Class for XrML support.
  44. 2005-04-24 Sebastien Pouliot <[email protected]>
  45. * SignedInfo.cs: Added [ComVisible (false)] to new property.
  46. * SignedXml.cs: Added [ComVisible (false)] to new properties and
  47. methods.
  48. * ReferenceList.cs: Fixed members signatures for beta2.
  49. * Reference.cs: Added [ComVisible (false)] to new set_TransformChain.
  50. * EncryptedType.cs: Fix compilation with EncryptionPropertyCollection
  51. changes.
  52. * DataObject.cs: Fix compilation warnings.
  53. * EncryptedKey.cs: Fix compilation with ReferenceList and
  54. EncryptionPropertyCollection changes.
  55. * EncryptionProperties.cs: Class has been renamed to
  56. EncryptionPropertyCollection.
  57. * Transform.cs: Added [ComVisible (false)] to new properties and
  58. methods.
  59. * EncryptedXml.cs: Changed XmlEncRSA1_5Url to XmlEncRSA15Url.
  60. * KeyInfoRetrievalMethod.cs: Added [ComVisible (false)] to Type
  61. property.
  62. * KeyInfoX509Data.cs: Added [ComVisible (false)] to AddSubjectKeyId
  63. (string) method and implemented it.
  64. * EncryptedData.cs: Changed EncryptionProperties to new
  65. EncryptionPropertyCollection.
  66. * XmlDsigC14NTransform.cs: Added [ComVisible (false)] to
  67. GetDigestedOutput method and added a basic implementation.
  68. * X509IssuerSerial.cs: IssuerName and SerialNumber are now properties.
  69. 2005-04-23 Sebastien Pouliot <[email protected]>
  70. * EncryptedXml.cs, SignedXml.cs: Changed X509CertificateEx to
  71. X509Certificate2 to match beta2.
  72. 2005-04-04 Atsushi Enomoto <[email protected]>
  73. * XmlSignatureStreamReader.cs : new file. Handles Stream to rip CR off.
  74. * XmlDsigXPathTransform.cs,
  75. XmlDecryptionTransform.cs,
  76. XmlDsigC14NTransform.cs,
  77. XmlDsigEnvelopedSignatureTransform.cs,
  78. XmlDsigXsltTransform.cs : use XmlSignatureStreamReader for Streams.
  79. 2004-09-16 Sebastien Pouliot <[email protected]>
  80. * Signature.cs: Fixed Xmldsig and broken unit tests.
  81. * SignedXml.cs: Fixed warning (level 4) for unused variable.
  82. * XmlDsigEnvelopedSignatureTransform.cs: Fixed warning (l4) for unused
  83. variable.
  84. 2004-09-04 Tim Coleman <[email protected]>
  85. * XmlDecryptionTransform.cs:
  86. Implement rudimentary xpointer support for Except URIs.
  87. 2004-09-03 Tim Coleman <[email protected]>
  88. * EncryptedXml.cs: Add support for RSA for key formatting
  89. * Reference.cs: Include XmlDecryptionTransform
  90. * SignedXml.cs:
  91. Set the EncryptedKey on the XmlDecryptionTransform when
  92. loading XML
  93. * XmlDecryptionTransform.cs:
  94. Clean up decryption transformation to work without ugly hack.
  95. * XmlDsigExcC14NTransform.cs XmlDsigExcC14NWithCommentsTransform.cs:
  96. Implement this class based on XmlDsigC14N
  97. * XmlSignature.cs: Add namespaces for various classes.
  98. * KeyInfoEncryptedKey.cs SymmetricKeyWrap.cs:
  99. Remove TODO attributes from implemented methods.
  100. * KeyInfoName.cs: Put #if NET_2_0 markers in
  101. * Transform.cs: Implement GetDigestedOutput
  102. 2004-09-02 Tim Coleman <[email protected]>
  103. * CipherReference.cs: Add XmlDecryptionTransform for 2.0
  104. * EncryptedType.cs: Fix type initialization to conform to .NET
  105. * EncryptedXml.cs:
  106. Add support for RSA key decryption and "cloning" for Transform
  107. * KeyInfoX509Data Reference.cs SignedInfo.cs XmlDsigC14NTransform.cs:
  108. Add 2.0 stubs
  109. * Signature.cs:
  110. Create internal GetXml function if we already have a doc
  111. * SignedXml.cs: Fix the transformation when we get an XmlDocument out
  112. * XmlDecryptionTransform.cs: Implemented Xml Decryption
  113. * XmlSignature.cs: Add namespace for Xml Decryption
  114. 2004-08-31 Tim Coleman <[email protected]>
  115. * XmlDsigExcC14NTransform.cs XmlDsigExcC14NWithCommentsTransform.cs:
  116. Add new stub classes
  117. * SignedXml.cs Transform.cs:
  118. New methods for 2.0
  119. * EncryptedXml.cs SymmetricKeyWrap.cs:
  120. Get symmetric key wrap to work for AES keys.
  121. 2004-08-30 Tim Coleman <[email protected]>
  122. * EncryptedXml.cs: Implement lots of XML Encryption code.
  123. * SymmetricKeyWrap.cs: Fix TripleDES keywrap algorithm.
  124. * XmlSignature.cs: Add NET_2_0 check around EncryptedKey
  125. 2004-08-30 Atsushi Enomoto <[email protected]>
  126. * KeyInfo.cs : NET_1_1 build fix.
  127. 2004-08-29 Tim Coleman <[email protected]>
  128. * EncryptedKey.cs: Fix element name when generating XML.
  129. * EncryptedXml.cs: Implement more of encryption/decryption routines for .NET 2.0
  130. * KeyInfo.cs: Support for EncryptedKey KeyInfoClause.
  131. * KeyInfoName.cs: Add missing constructor
  132. * SymmetricKeyWrap.cs: Add untested TripleDES key wrap
  133. algorithms for encryption/decryption
  134. * XmlSignature.cs: Add EncryptedKey constant.
  135. * EncryptedData.cs: Add .NET 2.0 method stubs.
  136. 2004-07-20 Atsushi Enomoto <[email protected]>
  137. * Signature.cs : Fixed NextElementPos() that incorrectly examined
  138. node matching.
  139. 2004-07-07 Sebastien Pouliot <[email protected]>
  140. * EncryptedXml.cs: Fixed Urls for XmlEncElementUrl and
  141. XmlEncElementContentUrl.
  142. * X509IssuerSerial.cs: Make constructor internal so it doesn't show up
  143. in corcompare results for NET_2_0 profile.
  144. 2004-06-17 Sebastien Pouliot <[email protected]>
  145. * KeyInfoX509Data.cs: Removed old internal IssuerSerial for the
  146. undocumented structure (now documented, and public, in Fx 2.0).
  147. * X509IssuerSerial.cs: Use structure as public in NET_2_0 and as
  148. internal before that.
  149. 2004-06-10 Gert Driesen <[email protected]>
  150. * SignedXml.cs: API signature fixes
  151. 2004-06-04 Atsushi Enomoto <[email protected]>
  152. * SignedXml.cs : Complete fix for bug #59545. Support #xpointer(id()).
  153. Namespace fixup is required when signing prefixed xml.
  154. 2004-06-04 Atsushi Enomoto <[email protected]>
  155. * SignedXml.cs : Fix for bug #59545. Handle #xpointer(/) as document.
  156. 2004-05-31 Atsushi Enomoto <[email protected]>
  157. * SignedXml.cs : partial fix for bug #59165 that does not output
  158. namespace that conflicts with element's namespace.
  159. 2004-05-13 Sebastien Pouliot <[email protected]>
  160. * SignedXml.cs: Update TODO informations.
  161. 2004-05-13 Atsushi Enomoto <[email protected]>
  162. * XmlDsigBase64Transform.cs :
  163. LoadInput() should retrieve all the descendants.
  164. GetOutput() should handle nodes without digging into child nodes.
  165. 2004-05-05 Atsushi Enomoto <[email protected]>
  166. * SignedXml.cs,
  167. Transform.cs : code cleanup. #if !NET_1_0 -> #if NET_1_1.
  168. * XmlDsigBase64Transform.cs : Should not output the content of the
  169. selected element nodes. Put text content only those text nodes are
  170. in the node list.
  171. * XmlDsigEnvelopedSignatureTransform.cs : removed MonoTODO.
  172. * XmlDsigXsltTransform.cs : Use XmlResolver to load document and
  173. to transform. Throw null reference exception explicitly when
  174. the input was not loaded.
  175. 2004-04-02 Lluis Sanchez Gual <[email protected]>
  176. * XmlDsigEnvelopedSignatureTransform.cs, XmlDsigXPathTransform.cs,
  177. XmlDsigXsltTransform.cs: Fixed build for net_1_0 profile.
  178. 2004-03-30 Sebastien Pouliot <[email protected]>
  179. * Reference.cs: Changed code to use CryptoConfig to create transforms.
  180. This is "the" way to do it (e.g. to allow new transforms to be added)
  181. but cause problems when using VS.NET for debugging. Old code is still
  182. present, but commented, for that cause.
  183. 2004-03-27 Atsushi Enomoto <[email protected]>
  184. * SignedXml.cs : namespace nodes also should be supplied for enveloped
  185. objects.
  186. * KeyInfoRetrievalMethod.cs : Keep input element as well as others.
  187. 2004-03-27 Atsushi Enomoto <[email protected]>
  188. * SignedXml.cs : XPath transformation output is not type of Stream.
  189. Fix to support them by canonicalizing it.
  190. 2004-03-27 Atsushi Enomoto <[email protected]>
  191. * XmlDsigXsltTransform.cs : GetOutput() now just returns
  192. transformation output.
  193. 2004-03-27 Atsushi Enomoto <[email protected]>
  194. * SignedXml.cs : Added xmlns support for Manifest.
  195. 2004-03-26 Sebastien Pouliot <[email protected]>
  196. * Manifest.cs: New. Support for <Manifest> in Xml Digital Signature.
  197. This should help us to validate more tests from the Phaos suite.
  198. Note: Microsoft doesn't support this and we only support it for
  199. verification (not signature generation).
  200. * SignedXml.cs: Added support for Manifest, including recursive
  201. manifests. Made some changes to reuse existing code as much as
  202. possible. Better support for local/remote files - but requires
  203. catching an Uri exception for local files :-(.
  204. * XmlSignature.cs: Added constants for Manifest element and URI.
  205. 2004-03-26 Atsushi Enomoto <[email protected]>
  206. * SignedXml.cs :
  207. - Use specified (or default) XmlResolver to get external resource,
  208. instead of using WebRequest directly. Also modified it easier.
  209. - ApplyTransform() : Clone only when it is required. Handle
  210. transformation output other than Stream.
  211. - Even if applicable key was not found in GetHash(), don't throw
  212. crypto exception every time and just return false (MS does it).
  213. Throw an exception only when no key was specified as KeyInfo.
  214. * XmlDsigEnvelopedSignatureTransform.cs : Fixed get_OutputTypes which
  215. incorrectly set InputTypes internally.
  216. * XmlDsigXPathTransform.cs : Context namespace nodes in loaded
  217. transform parameter (i.e. <XPath>..</XPath>) should be registered
  218. to XsltContext. Otherwise prefix binding error occurs.
  219. Just filter attribute node, instead of filtering attribute children.
  220. 2004-03-25 Sebastien Pouliot <[email protected]>
  221. * SignedXml.cs: Added try/catch in CheckSignatureWithKey to return
  222. false on exceptions. Fix signature-rsa-detached-xslt-transform-bad
  223. -retrieval-method.xml in the Phaos test suite.
  224. 2004-03-24 Atsushi Enomoto <[email protected]>
  225. * Reference.cs, Signature.cs : They should keep input element and hence
  226. keep namespace context nodes on LoadXml() as same as SignedInfo.
  227. * SignedXml.cs : Fixed SignedInfoTransformed() to fill context
  228. namespace nodes into the input document (unlike other classes, there
  229. seems no other way to keep ns-nodes here).
  230. Now some of W3C phaos xmldsig test passes.
  231. 2004-03-23 Atsushi Enomoto <[email protected]>
  232. * SignedInfo.cs : It holds input element and directly returns it
  233. unless the properties are not set.
  234. Throw CryptographicException when Reference is empty *and* GetXml()
  235. is *created*. (when just returning input element, no exception is
  236. thrown).
  237. 2004-03-23 Atsushi Enomoto <[email protected]>
  238. * DataObject.cs : It now holds element instead of each parameters.
  239. Avoid loading element content to different document unless its
  240. properties were modified (to keep namespace node context).
  241. 2004-03-20 Sebastien Pouliot <[email protected]>
  242. * SignedXml.cs: Removed unused (and commented) ComputeHash method.
  243. 2004-03-19 Atsushi Enomoto <[email protected]>
  244. * XmlDsigXPathTransform.cs : just found stupid bug.
  245. 2004-03-19 Sebastien Pouliot <[email protected]>
  246. * SignedXml.cs: Lot of small changes to complete TODOs and to match
  247. the new unit tests.
  248. 2004-03-17 Sebastien Pouliot <[email protected]>
  249. * SignedXml.cs: The old method was working for creating signature -
  250. so it was reintroduced for (only) this case.
  251. 2004-03-17 Atsushi Enomoto <[email protected]>
  252. * SignedXml.cs : the result from enveloped signature transform should
  253. be canonicalized before getting its hash.
  254. * XmlDsigEnvelopedSignatureTransform.cs : in XPath selection,
  255. if the node is Signature itself it is not allowed.
  256. PreserveWhitespace is required.
  257. 2004-03-16 Sebastien Pouliot <[email protected]>
  258. * SignedXml.cs: Changed (again). This time we use the Stream when
  259. loading the document. We now pass 14 out of 15 of the Merlin's
  260. tests (including one that MS fails). The only failing test is the
  261. one that use the EnvelopedTransform (unfinished).
  262. 2004-03-16 Sebastien Pouliot <[email protected]>
  263. * SignedXml.cs: Commented my last changes to SignedXml as it made other
  264. unis tests fail (in the c14n-izer).
  265. 2004-03-16 Atsushi Enomoto <[email protected]>
  266. * XmlDsigNodeList.cs : removed BOM from code file.
  267. 2004-03-16 Atsushi Enomoto <[email protected]>
  268. * XmlDsigNodeList.cs : added.
  269. * XmlDsigXPathTransform.cs : removed XmlDsigNodeList class.
  270. * XmlDsigEnvelopedSignatureTransform.cs :
  271. Implemented GetOutput(). However, it is totally MS behavior
  272. dependent and not based on the spec (we can reimplement it based on
  273. improved XmlDsigXPathTransform).
  274. * SignedXml.cs : in GetOutput(), accept XmlNodeList input too.
  275. 2004-03-15 Sebastien Pouliot <[email protected]>
  276. * SignedXml.cs: Now use the original Signature element before applying
  277. the C14N transformation. Added a check for null in LoadXml.
  278. 2004-03-14 Atsushi Enomoto <[email protected]>
  279. * XmlDsigXPathTransform.cs : implemented GetOutput() (with some
  280. internal XPath context classes).
  281. 2004-03-13 Atsushi Enomoto <[email protected]>
  282. * XmlDsigXsltTransform.cs : LoadInnerXml() should just load stylesheet
  283. and LoadInput() should just load transformed document.
  284. Transformation should be done in GetOutput() because either of the
  285. stylesheet or input can be loaded in prior. Adjusted code format.
  286. 2004-03-12 Sebastien Pouliot <[email protected]>
  287. * Signature.cs: KeyInfo isn't required in schema.
  288. * SignedInfo.cs: Added support for missing HMACOutputLength.
  289. * SignedXml.cs: Added support to download a reference (experimental).
  290. Now throw exception for unknown hash algorithm or canonicalization
  291. methods. Changed GetPublicKey to iterate all available keys (not just
  292. the first one).
  293. 2004-03-09 Atsushi Enomoto <[email protected]>
  294. * KeyInfo.cs : Attribute Id was not handlded.
  295. * KeyInfoX509Data.cs : all array members return null when there are
  296. no such contents. Just find child elements, not descendants.
  297. * SignedXml.cs : key is not always required when CheckSignature() is
  298. called.
  299. * XmlDsigXsltTransform.cs : LoadInput should allow node list.
  300. * XmlSignature.cs : added GetChildElements().
  301. 2004-03-09 Atsushi Enomoto <[email protected]>
  302. * KeyInfoX509Data.cs : trivial local var name fix.
  303. 2004-03-09 Atsushi Enomoto <[email protected]>
  304. * KeyInfoX509Data.cs,
  305. Reference.cs,
  306. SignedInfo.cs,
  307. XmlSignature.cs : GetElementsByTagName() should be eliminated or
  308. at least should use namespace URI.
  309. 2004-03-04 Atsushi Enomoto <[email protected]>
  310. * KeyInfo.cs :
  311. Fixed LoadXml() to skip text nodes as MS.NET does.
  312. Uncommented out RSAKeyValue.
  313. * Signature.cs : Fixed LoadXml(). Don't use GetElementsByTagName()
  314. that incorrectly acquires descendants. Throw CryptographicException
  315. if required elements were not found.
  316. * Transform.cs : added internal GetResolver().
  317. * XmlDsigXPathTransform.cs,
  318. XmlDsigXsltTransform.cs : use XmlResolver.
  319. 2004-02-19 Tim Coleman <[email protected]>
  320. * SymmetricKeyWrap.cs:
  321. Add AES Key Wrap
  322. * EncryptedXml.cs:
  323. Add calls to SymmetricKeyWrap
  324. 2004-02-11 Sebastien Pouliot <[email protected]>
  325. * Reference.cs: Added LoadInnerXml to transforms. Removed unused
  326. variable.
  327. * Transform.cs: Import GetInnerXml in GetXml.
  328. * XmlDsigBase64Transform.cs: Now use a StreamWriter to avoid multiple
  329. allocations.
  330. * XmlDsigC14NTransform.cs: Added Stream support to LoadInput
  331. * XmlDsigXPathTransform.cs: Fixed GetInnerXml to include xpath
  332. expression and LoadInput. It nows match MS implementation but doesn't
  333. work like I think it should (but neither is MS implementation).
  334. 2004-02-10 Tim Coleman <[email protected]>
  335. * DataReference.cs EncryptedKey.cs EncryptedXml.cs
  336. * KeyInfoEncryptedKey.cs KeyReference.cs ReferenceList.cs
  337. * X509IssuerSerial.cs XmlDecryptionTransform.cs:
  338. Add new classes for Xml Encryption in 1.2
  339. * CipherData.cs CipherReference.cs EncryptedData.cs
  340. * EncryptedReference.cs EncryptionMethod.cs EncryptionProperty.cs :
  341. Change NamespaceURI reference to EncryptedXml class.
  342. Make compliant with 1.2
  343. * XmlEncryption.cs:
  344. Add new entity names.
  345. 2004-02-07 Tim Coleman <[email protected]>
  346. * CipherData.cs CipherReference.cs EncryptedData.cs
  347. * EncryptedReference.cs EncryptedType.cs EncryptionMethod.cs
  348. * EncryptionProperties.cs EncryptionProperty.cs XmlEncryption.cs:
  349. New classes added for Xml Encryption in 1.2
  350. * KeyInfoRetrievalMethod.cs:
  351. Added Type attribute for 1.2
  352. * XmlSignature.cs:
  353. Added string constants for algorithm namespaces
  354. 2004-01-11 Sebastien Pouliot <[email protected]>
  355. * SignedXml.cs: Fixed class signature (for 1.1+) by adding public to
  356. Resolver property.
  357. * Transform.cs: Fixed class signature (for 1.1+) by adding public to
  358. Resolver property.
  359. 2003-12-14 Sebastien Pouliot <[email protected]>
  360. * SignedXml.cs: Now load the public key when verifying (bug #52084)
  361. and can find an element by it's Id when Id isn't defined in DTD or XSD.
  362. 2003-07-27 Sebastien Pouliot <[email protected]>
  363. * XmlSignature.cs: Changed USE_VERSION_1_0 for NET_1_0.
  364. 2003-07-24 Sebastien Pouliot <[email protected]>
  365. * XmlDsigC14NTransform.cs: Patch to use Mono.Xml.XmlCanonicalizer
  366. from Aleksey Sanin.
  367. 2003-06-19 Nick Drochak <[email protected]>
  368. * DSAKeyValue.cs:
  369. * RSAKeyValue.cs: Work around for mcs? bug 45127.
  370. 2003-06-11 Sebastien Pouliot <[email protected]>
  371. * SignedXml.cs: Changed USE_VERSION_1_0 for NET_1_0.
  372. * Transform.cs: Changed USE_VERSION_1_0 for NET_1_0.
  373. 2003-05-25 Sebastien Pouliot <[email protected]>
  374. * XmlSignature.cs: Changed string "RetrievalElement" to "RetrievalMethod"
  375. to match framework 1.1 (this was a bug in framework 1.0).
  376. 2003-05-10 Sebastien Pouliot <[email protected]>
  377. * SignedXml.cs: Added property XmlResolver Resolver as per framework 1.1
  378. documentation (no public declaration).
  379. * Transform.cs: Added property XmlResolver Resolver as per framework 1.1
  380. documentation (no public declaration).
  381. 2003-03-03 Sebastien Pouliot <[email protected]>
  382. * DSAKeyValue.cs: Added patch from Atsushi Eno (to remove string
  383. XML generation).
  384. * RSAKeyValue.cs: Added patch from Atsushi Eno (to remove string
  385. XML generation).
  386. * XmlDsigBase64Transform.cs: Fixed problem when using XPath.
  387. 2003-03-02 Sebastien Pouliot <[email protected]>
  388. * DSAKeyValue.cs: New XML generation is commented. Old string technique
  389. did a better job to match MS implementation.
  390. * DataObject.cs: Replaced XML generation from StringBuilder to XmlElement.
  391. * KeyInfo.cs: Replaced XML generation from StringBuilder to XmlElement.
  392. * KeyInfoName.cs: Replaced XML generation from StringBuilder to XmlElement.
  393. * KeyInfoNode.cs: Replaced XML generation from StringBuilder to XmlElement.
  394. * KeyInfoRetrievalMethod.cs: Replaced XML generation from StringBuilder to XmlElement.
  395. * KeyInfoX509Data.cs: Replaced XML generation from StringBuilder to XmlElement.
  396. * RSAKeyValue.cs: New XML generation is commented. Old string technique
  397. did a better job to match MS implementation.
  398. * Reference.cs: Replaced XML generation from StringBuilder to XmlElement.
  399. * Signature.cs: Replaced XML generation from StringBuilder to XmlElement.
  400. * SignedInfo.cs: Replaced XML generation from StringBuilder to XmlElement.
  401. * SignedXml.cs: Replaced XML generation from StringBuilder to XmlElement.
  402. * Transform.cs: Replaced XML generation from StringBuilder to XmlElement.
  403. * XmlDsigEnvelopedSignatureTransform.cs: Added missing Algorithm URL.
  404. * XmlDsigXPathTransform.cs: Added missing Algorithm URL.
  405. * XmlSignature.cs: New. Private contants (construct similar to WSE).
  406. 2003-02-19 Sebastien Pouliot <[email protected]>
  407. * All: Corrected class indentation, minor fixes, added many MonoTODO (so class status
  408. will reflect reality).
  409. 2003-01-17 Sebastien Pouliot <[email protected]>
  410. * KeyInfo.cs: Changed some protected declaration to private.
  411. * KeyInfoName.cs: Changed some protected declaration to private.
  412. * KeyInfoNode.cs: Changed some protected declaration to private.
  413. * KeyInfoRetrievalMethod.cs: Changed some protected declaration to private.
  414. * KeyInfoX509Data.cs: Changed some protected declaration to private.
  415. * Transform.cs: Changed some protected declaration to private.
  416. * XmlDsigBase64Transform.cs: Changed some protected declaration to private.
  417. * XmlDsigC14NTransform.cs: Changed some protected declaration to private.
  418. * XmlDsigC14NWithCommentsTransform.cs: Changed some protected declaration to private.
  419. * XmlDsigEnvelopedSignatureTransform.cs: Changed some protected declaration to private.
  420. * XmlDsigXPathTransform.cs: Changed some protected declaration to private.
  421. * XmlDsigXsltTransform.cs: Changed some protected declaration to private.
  422. 2002-11-28 Sebastien Pouliot <[email protected]>
  423. * TODOAttribute.cs: New. Still much to do ;-)
  424. * XmlDsigXPathTransform.cs: Corrected to compile. Transform is non-
  425. functionnal.
  426. * XmlDsigXsltTransform.cs: Corrected to compile. Transform is non-
  427. functionnal.
  428. 2002-11-20 Sebastien Pouliot <[email protected]>
  429. * DataObject.cs: New. Complete implementation.
  430. * DSAKeyValue.cs: New. Complete implementation.
  431. * KeyInfo.cs: New. Complete implementation.
  432. * KeyInfoClause.cs: New. Abstract class (complete).
  433. * KeyInfoName.cs: New. Complete implementation.
  434. * KeyInfoNode.cs: New. Complete implementation.
  435. * KeyInfoRetrievalMethod.cs: New. Complete implementation.
  436. * KeyInfoX509Data.cs: New. Complete implementation.
  437. * Reference.cs: New. Incomplete implementation.
  438. * RSAKeyValue.cs: New. Complete implementation.
  439. * Signature.cs: New. Almost complete implementation - returned
  440. XML isn't exactly like the MS implementation.
  441. * SignedInfo.cs: New. Complete except SignatureLength.
  442. * SignedXml.cs: New. Minimal implementation (only enveloped signatures).
  443. Still many TODO!
  444. * Transform.cs: New. Abstract class (complete).
  445. * TransformChain.cs: New. Complete implementation.
  446. * XmlDsigBase64Transform.cs: New. Stub + basic logic.
  447. * XmlDsigC14NTransform.cs: New. Stub + basic logic.
  448. * XmlDsigC14NWithCommentsTransform.cs: New. Stub + basic logic.
  449. * XmlDsigEnvelopedSignatureTransform.cs: New. Stub + basic logic.
  450. * XmlDsigXPathTransform.cs: New. Stub + basic logic.
  451. * XmlDsigXsltTransform.cs: New. Stub + basic logic.