InMemorySymmetricSecurityKey.GetEncryptionTransform(String, Byte[]) 方法

定义

获取一种使用指定的加密算法对 XML 进行加密的转换。

public:
 override System::Security::Cryptography::ICryptoTransform ^ GetEncryptionTransform(System::String ^ algorithm, cli::array <System::Byte> ^ iv);
public override System.Security.Cryptography.ICryptoTransform GetEncryptionTransform (string algorithm, byte[] iv);
override this.GetEncryptionTransform : string * byte[] -> System.Security.Cryptography.ICryptoTransform
Public Overrides Function GetEncryptionTransform (algorithm As String, iv As Byte()) As ICryptoTransform

参数

algorithm
String

一个对 XML 进行加密的加密算法。

iv
Byte[]

一个 Byte 数组,它包含指定算法的初始化向量 (IV)。

返回

一个表示加密转换的 ICryptoTransform

例外

不支持 algorithm。 支持的算法包括 TripleDesEncryptionAes128EncryptionAes192EncryptionAes256Encryption

注解

使用 SecurityAlgorithms 类中表示加密算法的字段指定算法。

适用于