InMemorySymmetricSecurityKey.GetDecryptionTransform(String, Byte[]) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一种使用指定的加密算法对密码文本进行解密的转换。
public:
override System::Security::Cryptography::ICryptoTransform ^ GetDecryptionTransform(System::String ^ algorithm, cli::array <System::Byte> ^ iv);
public override System.Security.Cryptography.ICryptoTransform GetDecryptionTransform (string algorithm, byte[] iv);
override this.GetDecryptionTransform : string * byte[] -> System.Security.Cryptography.ICryptoTransform
Public Overrides Function GetDecryptionTransform (algorithm As String, iv As Byte()) As ICryptoTransform
参数
- algorithm
- String
一种对密码文本(例如加密的 XML)进行解密的加密算法。
返回
一个表示解密转换的 ICryptoTransform。
例外
不支持 algorithm
。 支持的算法包括 TripleDesEncryption、Aes128Encryption、Aes192Encryption 和 Aes256Encryption。
注解
使用 SecurityAlgorithms 类中表示解密算法的字段来指定算法。