ChangeLog 22 KB

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