Table of Contents

Interface ICryptHelper

Namespace
SunamoInterfaces.Interfaces
Assembly
SunamoInterfaces.dll

Interface for cryptographic helper operations with byte lists.

public interface ICryptHelper
Extension Methods

Methods

Decrypt(List<byte>)

Decrypts byte data.

List<byte> Decrypt(List<byte> data)

Parameters

data List<byte>

The encrypted data.

Returns

List<byte>

Decrypted data.

Encrypt(List<byte>)

Encrypts byte data.

List<byte> Encrypt(List<byte> data)

Parameters

data List<byte>

The data to encrypt.

Returns

List<byte>

Encrypted data.