SymmetricAlgorithm.CreateDecryptor 메서드

정의

대칭 암호 해독기 개체를 만듭니다.

오버로드

CreateDecryptor()

현재 Key 속성 및 초기화 벡터(IV)를 사용하여 대칭 decryptor 개체를 만듭니다.

CreateDecryptor(Byte[], Byte[])

파생 클래스에서 재정의된 경우 지정된 Key 속성 및 초기화 벡터(IV)를 사용하여 대칭 decryptor 개체를 만듭니다.

CreateDecryptor()

현재 Key 속성 및 초기화 벡터(IV)를 사용하여 대칭 decryptor 개체를 만듭니다.

public:
 virtual System::Security::Cryptography::ICryptoTransform ^ CreateDecryptor();
public virtual System.Security.Cryptography.ICryptoTransform CreateDecryptor ();
abstract member CreateDecryptor : unit -> System.Security.Cryptography.ICryptoTransform
override this.CreateDecryptor : unit -> System.Security.Cryptography.ICryptoTransform
Public Overridable Function CreateDecryptor () As ICryptoTransform

반환

ICryptoTransform

대칭 decryptor 개체입니다.

설명

이 메서드는 동일한 서명이 있는 오버로드를 사용하여 만든 암호화된 메시지의 CreateEncryptor 암호를 해독합니다.

추가 정보

적용 대상

CreateDecryptor(Byte[], Byte[])

파생 클래스에서 재정의된 경우 지정된 Key 속성 및 초기화 벡터(IV)를 사용하여 대칭 decryptor 개체를 만듭니다.

public:
 abstract System::Security::Cryptography::ICryptoTransform ^ CreateDecryptor(cli::array <System::Byte> ^ rgbKey, cli::array <System::Byte> ^ rgbIV);
public abstract System.Security.Cryptography.ICryptoTransform CreateDecryptor (byte[] rgbKey, byte[]? rgbIV);
public abstract System.Security.Cryptography.ICryptoTransform CreateDecryptor (byte[] rgbKey, byte[] rgbIV);
abstract member CreateDecryptor : byte[] * byte[] -> System.Security.Cryptography.ICryptoTransform
Public MustOverride Function CreateDecryptor (rgbKey As Byte(), rgbIV As Byte()) As ICryptoTransform

매개 변수

rgbKey
Byte[]

대칭 알고리즘에 사용할 비밀 키입니다.

rgbIV
Byte[]

대칭 알고리즘에 사용할 초기화 벡터입니다.

반환

ICryptoTransform

대칭 decryptor 개체입니다.

설명

이 메서드는 동일한 매개 변수를 사용하여 오버로드를 사용하여 만든 암호화된 메시지의 CreateEncryptor 암호를 해독합니다.

추가 정보

적용 대상