HashAlgorithm

HashAlgorithm enumeration

Specifies the hash algorithm used for cryptographic signing.

public enum HashAlgorithm

Values

Name Value Description
Auto 0 Automatically selects the hash algorithm based on context.
Sha1 1 The SHA-1 hash algorithm, producing a 160-bit hash value.
Sha256 2 The SHA-256 hash algorithm, producing a 256-bit hash value.
Sha384 3 The SHA-384 hash algorithm, producing a 384-bit hash value.
Sha512 4 The SHA-512 hash algorithm, producing a 512-bit hash value.

See Also