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.1.0
Syntax
C#
public interface IDataProtectionApi
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
Examples
var dataProtectionApi = ctx.Use<IDataProtectionApi>();
dataProtectionApi.Protect(value)
See Also