C# Class OpenSSL.Crypto.Envelope

Simple struct to encapsulate common parameters for crypto functions
Show file Open project: langhuihui/csharprtmp Class Usage Examples

Public Properties

Property Type Description
Data byte[]
IV byte[]
Keys byte[][]

Property Details

Data public property

The payload (contains plaintext or ciphertext)
public byte[] Data
return byte[]

IV public property

The IV (Initialization Vector)
public byte[] IV
return byte[]

Keys public property

The key for a crypto operation
public byte[][] Keys
return byte[][]