ChangeLog 23 KB

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