C# 클래스 IronPigeon.SymmetricEncryptionResult

The result of symmetric encryption using a random key, IV.
상속: SymmetricEncryptionVariables
파일 보기 프로젝트 열기: AArnott/IronPigeon 1 사용 예제들

공개 메소드들

메소드 설명
SymmetricEncryptionResult ( SymmetricEncryptionVariables encryptionVariables, byte ciphertext ) : System

Initializes a new instance of the SymmetricEncryptionResult class.

SymmetricEncryptionResult ( byte key, byte iv, byte ciphertext ) : System

Initializes a new instance of the SymmetricEncryptionResult class.

메소드 상세

SymmetricEncryptionResult() 공개 메소드

Initializes a new instance of the SymmetricEncryptionResult class.
public SymmetricEncryptionResult ( SymmetricEncryptionVariables encryptionVariables, byte ciphertext ) : System
encryptionVariables SymmetricEncryptionVariables The key and IV used to encrypt the ciphertext.
ciphertext byte The encrypted data.
리턴 System

SymmetricEncryptionResult() 공개 메소드

Initializes a new instance of the SymmetricEncryptionResult class.
public SymmetricEncryptionResult ( byte key, byte iv, byte ciphertext ) : System
key byte The randomly generated symmetric key used to encrypt the data.
iv byte The initialization vector used to encrypt the data.
ciphertext byte The encrypted data.
리턴 System