Table of Contents

Delegate SifrujSymetricky

Namespace
SunamoDelegates
Assembly
SunamoDelegates.dll

Represents a method for symmetric encryption that takes plain text bytes, passphrase, salt, and initialization vector.

public delegate byte[] SifrujSymetricky(byte[] plainTextBytes, string passPhrase, byte[] saltValueBytes, byte[] initVectorBytes)

Parameters

plainTextBytes byte[]

The plain text bytes to encrypt.

passPhrase string

The passphrase for encryption.

saltValueBytes byte[]

The salt value bytes.

initVectorBytes byte[]

The initialization vector bytes.

Returns

byte[]

The encrypted byte array.

Extension Methods