IDataHashApi Interface

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

Definition

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

Example

C#
                    var dataHashApi = ctx.Use<IDataHashApi>();
dataHashApi.Hash(value)
                  

Methods

Hash(Byte) Computes the hash value for the specified byte array.
Hash(String) Computes the hash value for the plaintext.

See Also