Membership.HashAlgorithmType Property

Definition

The identifier of the algorithm used to hash passwords.

C#
public static string HashAlgorithmType { get; }

Property Value

The identifier of the algorithm used to hash passwords, or blank to use the default hash algorithm.

Remarks

The HashAlgorithmType property identifies the custom hash algorithm used by the Membership class. You set the HashAlgorithmType property using the hashAlgorithmType attribute of the membership element.

The .NET Framework enables you to configure custom cryptography classes using the <cryptographySettings> element configuration section. The HashAlgorithmType property must match the name attribute of the <nameEntry> element in a <cryptoNameMapping> element. For more information, see Mapping Algorithm Names to Cryptography Classes.

If the HashAlgorithmType property is not set, the Membership class uses the hash algorithm set in the validation attribute of the <machineKey> element.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also