IDataProtectionApi Interface

Provides methods for data protection

Definition

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

Example

C#
                    var dataProtectionApi = ctx.Use<IDataProtectionApi>();
dataProtectionApi.Protect(value)
                  

Methods

Protect(Byte) Cryptographically protects a piece of plaintext data.
Protect(String) Cryptographically protects a piece of plaintext data.
Unprotect(Byte) Cryptographically unprotects a piece of cipher data.
Unprotect(String) Cryptographically unprotects a piece of cipher text.

See Also