次の方法で共有


DESCryptoServiceProvider.CreateDecryptor メソッド (Byte[], Byte[])

指定した Key および初期化ベクタ (IV) を使用して、対称 DES (Data Encryption Standard) 復号化オブジェクトを作成します。

Overrides Overloads Public Function CreateDecryptor( _
   ByVal rgbKey() As Byte, _   ByVal rgbIV() As Byte _) As ICryptoTransform
[C#]
public override ICryptoTransform CreateDecryptor(byte[] rgbKey,byte[] rgbIV);
[C++]
public: ICryptoTransform* CreateDecryptor(unsigned charrgbKey __gc[],unsigned charrgbIV __gc[]);
[JScript]
public override function CreateDecryptor(
   rgbKey : Byte[],rgbIV : Byte[]) : ICryptoTransform;

パラメータ

  • rgbKey
    対称アルゴリズムで使用する共有キー。
  • rgbIV
    対称アルゴリズムで使用する初期化ベクタ。

戻り値

対称 DES 復号化オブジェクト。

解説

このメソッドは、同じパラメータを指定した CreateEncryptor のオーバーロードで作成された暗号化メッセージを復号化します。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

DESCryptoServiceProvider クラス | DESCryptoServiceProvider メンバ | System.Security.Cryptography 名前空間 | DESCryptoServiceProvider.CreateDecryptor オーバーロードの一覧 | 暗号サービス