ChangeLog 23 KB

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