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
plainTextBytesbyte[]The plain text bytes to encrypt.
passPhrasestringThe passphrase for encryption.
saltValueBytesbyte[]The salt value bytes.
initVectorBytesbyte[]The initialization vector bytes.
Returns
- byte[]
The encrypted byte array.
- Extension Methods