2 writes to _CustomValidationName
System.Web (2)
Configuration\MachineKeySection.cs (2)
1057
_CustomValidationName
= ValidationAlgorithm;
1100
_CustomValidationName
= _CustomValidationName.Substring(ALGO_PREFIX.Length);
5 references to _CustomValidationName
System.Web (5)
Configuration\MachineKeySection.cs (5)
860
return HashDataUsingKeyedAlgorithm(KeyedHashAlgorithm.Create(
_CustomValidationName
),
863
return HashDataUsingNonKeyedAlgorithm(HashAlgorithm.Create(
_CustomValidationName
),
1095
if (!
_CustomValidationName
.StartsWith(ALGO_PREFIX, StringComparison.Ordinal)) {
1100
_CustomValidationName =
_CustomValidationName
.Substring(ALGO_PREFIX.Length);
1104
alg = HashAlgorithm.Create(
_CustomValidationName
);