EncryptionAlgorithmWrapper.EncryptionAlgo 属性

定义

获取或设置用于加密私有消息的消息正文的加密算法。

public:
 property System::Messaging::EncryptionAlgorithm EncryptionAlgo { System::Messaging::EncryptionAlgorithm get(); void set(System::Messaging::EncryptionAlgorithm value); };
[System.Runtime.InteropServices.ComVisible(true)]
public System.Messaging.EncryptionAlgorithm EncryptionAlgo { get; set; }
[<System.Runtime.InteropServices.ComVisible(true)>]
member this.EncryptionAlgo : System.Messaging.EncryptionAlgorithm with get, set
Public Property EncryptionAlgo As EncryptionAlgorithm

属性值

EncryptionAlgorithm 枚举中的有效值。 EncryptionAlgorithm 是.NET Framework类库中的枚举,位于 System.Messaging 命名空间中。

属性

注解

默认加密值为 Rc2. 其他有效值是 None,如果没有加密,并且 Rc4对应于不太安全的选项。

重要

配置消息队列任务以发送消息时,可以使用消息队列当前支持的加密算法之一(Rc2 或 Rc4), (也称为 MSMQ) 技术来加密消息。 与较新的算法相比,这两种加密算法都被视为加密性很弱的算法,但消息队列尚不支持新的算法。 因此,在使用消息队列任务发送消息时,应考虑您的加密需要。

适用于