C# Class IronPigeon.SymmetricEncryptionVariables

Captures the key and IV used for a symmetric encryption.
ファイルを表示 Open project: AArnott/IronPigeon Class Usage Examples

Public Methods

Method Description
SymmetricEncryptionVariables ( byte key, byte iv ) : System

Initializes a new instance of the SymmetricEncryptionVariables class.

Method Details

SymmetricEncryptionVariables() public method

Initializes a new instance of the SymmetricEncryptionVariables class.
public SymmetricEncryptionVariables ( byte key, byte iv ) : System
key byte The randomly generated symmetric key used to encrypt the data.
iv byte The initialization vector used to encrypt the data.
return System