Data Encryption

These methods will either encrypt or decrypt an array of bytes. These can be used when an image is involved or secure data. (the Video Integration system encrypts data used to connect to the VMS)

Decrypt Data

Example in C#

// Returns: Byte
var item = await client.DecryptData(Byte data);

Encrypt Data

Example in C#

// Returns: Byte
var item = await client.EncryptData(Byte data);

Get Decryption Key

Example in C#

// Returns: Byte
var item = await client.GetDecryptionKey();

Overview of GetDecryptionKey goes here.