2 writes to algorithm
System.IdentityModel (2)
System\IdentityModel\ExclusiveCanonicalizationTransform.cs (2)
38
this.
algorithm
= includeComments ? XD.SecurityAlgorithmDictionary.ExclusiveC14nWithComments.Value : XD.SecurityAlgorithmDictionary.ExclusiveC14n.Value;
170
algorithm
= reader.GetAttribute(dictionaryManager.XmlSignatureDictionary.Algorithm, null);
6 references to algorithm
System.IdentityModel (6)
System\IdentityModel\ExclusiveCanonicalizationTransform.cs (6)
45
return
algorithm
;
171
if (string.IsNullOrEmpty(
algorithm
))
176
if (
algorithm
== dictionaryManager.SecurityAlgorithmDictionary.ExclusiveC14nWithComments.Value)
183
else if (
algorithm
== dictionaryManager.SecurityAlgorithmDictionary.ExclusiveC14n.Value)
189
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CryptographicException(SR.GetString(SR.ID6005,
algorithm
)));
218
writer.WriteAttributeString(dictionaryManager.XmlSignatureDictionary.Algorithm, null,
algorithm
);