//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
using Experimental.System.Messaging.Interop;
namespace Experimental.System.Messaging
{
///
///
///
/// Specifies the encryption algorithm used to encrypt the message body of a
/// private message.
///
///
///
public enum EncryptionAlgorithm
{
///
///
///
/// No encryption.
///
///
None = 0,
///
///
///
/// The value MQMSG_CALG_RC2. This is the default value for
/// the property of the Message Queuing
/// application's
///
///
/// object.
///
///
///
Rc2 = NativeMethods.CALG_RC2,
///
///
///
/// The value MQMSG_CALG_RC4. This corresponds to the less
/// secure option for the property of the
/// Message Queuing application's
///
/// object.
///
///
///
Rc4 = NativeMethods.CALG_RC4,
}
}