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