Click or drag to resize

IDataProtectionApi Interface

Provides methods for data protection

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntax
C#
public interface IDataProtectionApi

The IDataProtectionApi type exposes the following members.

Methods
 NameDescription
Public methodProtect(Byte) Cryptographically protects a piece of plaintext data.
Public methodProtect(String) Cryptographically protects a piece of plaintext data.
Public methodUnprotect(Byte) Cryptographically unprotects a piece of cipher data.
Public methodUnprotect(String) Cryptographically unprotects a piece of cipher text.
Top
Example
C#
var dataProtectionApi = ctx.Use<IDataProtectionApi>();
dataProtectionApi.Protect(value)
See Also