ChangeLog 23 KB

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