DESCryptoServiceProvider.CreateDecryptor 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
CreateDecryptor() | |
CreateDecryptor(Byte[], Byte[]) |
CreateDecryptor()
public:
override System::Security::Cryptography::ICryptoTransform ^ CreateDecryptor();
public override System.Security.Cryptography.ICryptoTransform CreateDecryptor ();
override this.CreateDecryptor : unit -> System.Security.Cryptography.ICryptoTransform
Public Overrides Function CreateDecryptor () As ICryptoTransform
傳回
對稱解密子物件。
備註
這個方法會解密使用具有相同簽章的多 CreateEncryptor 載所建立的加密訊息。
適用於
CreateDecryptor(Byte[], Byte[])
public:
override System::Security::Cryptography::ICryptoTransform ^ CreateDecryptor(cli::array <System::Byte> ^ rgbKey, cli::array <System::Byte> ^ rgbIV);
public override System.Security.Cryptography.ICryptoTransform CreateDecryptor (byte[] rgbKey, byte[]? rgbIV);
public override System.Security.Cryptography.ICryptoTransform CreateDecryptor (byte[] rgbKey, byte[] rgbIV);
override this.CreateDecryptor : byte[] * byte[] -> System.Security.Cryptography.ICryptoTransform
Public Overrides Function CreateDecryptor (rgbKey As Byte(), rgbIV As Byte()) As ICryptoTransform
參數
- rgbKey
- Byte[]
對稱演算法所用的祕密金鑰。
- rgbIV
- Byte[]
對稱演算法所用的初始化向量。
傳回
對稱 DES 解密子物件。
例外狀況
備註
這個方法會解密使用 CreateEncryptor 多載搭配相同參數所建立的加密訊息。