Click or drag to resize

IDataHashApi Interface

Provides methods to compute the SHA256 hash for the input data.

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

The IDataHashApi type exposes the following members.

Methods
 NameDescription
Public methodHash(Byte) Computes the hash value for the specified byte array.
Public methodHash(String) Computes the hash value for the plaintext.
Top
Example
C#
var dataHashApi = ctx.Use<IDataHashApi>();
dataHashApi.Hash(value)
See Also