ChangeLog 25 KB

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