MsmqEncryptionAlgorithm Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Contains the set of encryption algorithms that can be used to encrypt messages on the wire.
public enum class MsmqEncryptionAlgorithm
public enum MsmqEncryptionAlgorithm
type MsmqEncryptionAlgorithm =
Public Enum MsmqEncryptionAlgorithm
- Inheritance
Fields
Name | Value | Description |
---|---|---|
RC4Stream | 0 | A stream cipher defined by RSA Security. |
Aes | 1 | The Advanced Encryption Standard (AES) defined by the National Institute of Standards and Technology (NIST). |
Remarks
Message Queuing (MSMQ) can encrypt messages on the wire when transferring queued messages between queue managers. MsmqEncryptionAlgorithm is an enumeration that contains the set of encryption algorithms that can be used to encrypt messages on the wire.
For encryption to work, the MsmqProtectionLevel property must be set to EncryptAndSign.
Only RC4Stream is supported on Windows Server 2003 and Windows XP.