Пример #1
0
		public XmlDsigC14NTransform (bool includeComments) 
		{
			if (includeComments)
				Algorithm = XmlSignature.AlgorithmNamespaces.XmlDsigC14NWithCommentsTransform;
			else
				Algorithm = XmlSignature.AlgorithmNamespaces.XmlDsigC14NTransform;
			canonicalizer = new XmlCanonicalizer (includeComments, false, PropagatedNamespaces);
		}
Пример #2
0
		public XmlDsigExcC14NTransform (bool includeComments, string inclusiveNamespacesPrefixList)
		{
			if (includeComments)
				Algorithm = XmlSignature.AlgorithmNamespaces.XmlDsigExcC14NWithCommentsTransform;
			else
				Algorithm = XmlSignature.AlgorithmNamespaces.XmlDsigExcC14NTransform;
			this.inclusiveNamespacesPrefixList = inclusiveNamespacesPrefixList;
			canonicalizer = new XmlCanonicalizer (includeComments, true, PropagatedNamespaces);
		}
		public XmlDsigC14NTransform (bool includeComments) 
		{
			canonicalizer = new XmlCanonicalizer (includeComments, false);
		}
		public XmlDsigC14NTransform () 
		{
			Algorithm = "http://www.w3.org/TR/2001/REC-xml-c14n-20010315";
			canonicalizer = new XmlCanonicalizer (false, false);
		}
		public XmlDsigExcC14NTransform (bool includeComments)
		{
			this.includeComments = includeComments;
			canonicalizer = new XmlCanonicalizer (true, includeComments);
		}
		public XmlDsigExcC14NTransform ()
		{
			Algorithm = XmlSignature.AlgorithmNamespaces.XmlDsigExcC14NTransform;
			canonicalizer = new XmlCanonicalizer (true, false);
		}