Table of Contents

Interface ICryptCl

Namespace
SunamoCl._public.SunamoInterfaces.Interfaces
Assembly
SunamoCl.dll

Interface for cryptographic operations providing salt, initialization vector, and passphrase

public interface ICryptCl
Extension Methods

Properties

Iv

Gets or sets the initialization vector bytes

List<byte> Iv { get; set; }

Property Value

List<byte>

Pp

Gets or sets the passphrase used for encryption and decryption

string Pp { get; set; }

Property Value

string

S

Gets or sets the salt bytes used for cryptographic operations

List<byte> S { get; set; }

Property Value

List<byte>