XmlDsigC14NWithCommentsTransform.cs 509 B

1234567891011121314151617181920
  1. //
  2. // XmlDsigC14NWithCommentsTransform.cs -
  3. // C14N with comments Transform implementation for XML Signature
  4. //
  5. // Author:
  6. // Sebastien Pouliot ([email protected])
  7. //
  8. // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
  9. //
  10. namespace System.Security.Cryptography.Xml {
  11. public class XmlDsigC14NWithCommentsTransform : XmlDsigC14NTransform {
  12. public XmlDsigC14NWithCommentsTransform() : base (true)
  13. {
  14. Algorithm = "http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments";
  15. }
  16. }
  17. }