MsmqSecureHashAlgorithm Enum

Definition

Contains the hashing algorithms that Message Queuing (MSMQ) can use to sign messages.

public enum class MsmqSecureHashAlgorithm
public enum MsmqSecureHashAlgorithm
type MsmqSecureHashAlgorithm = 
Public Enum MsmqSecureHashAlgorithm
Inheritance
MsmqSecureHashAlgorithm

Fields

MD5 0

The Message Digest Algorithm 5 (MD5). Due to collision problems with MD5, Microsoft recommends SHA256.

Sha1 1

The Secure Hash Algorithm (SHA-1). Due to collision problems with SHA1, Microsoft recommends SHA256.

Sha256 2

The SHA-256 algorithm.

Sha512 3

The SHA 512 algorithm.

Remarks

Message Queuing can secure messages by signing them. The MsmqSecureHashAlgorithm class is an enumeration that contains the hashing algorithms that Message Queuing can use to sign messages.

Sha256 and Sha512 are supported only on Windows Vista.

Applies to