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