Table of Contents

Interface IHash

Namespace
Cuemon.Security
Assembly
Cuemon.Core.dll

Defines the bare minimum of both non-cryptographic and cryptographic transformations.

public interface IHash

Methods

ComputeHash(Byte[])

Computes the hash value for the specified byte[].

HashResult ComputeHash(byte[] input)

Parameters

input Byte[]

The byte[] to compute the hash code for.

Returns

HashResult

A HashResult containing the computed hash code of the specified input.

ComputeHash(Stream)

Computes the hash value for the specified System.IO.Stream.

HashResult ComputeHash(Stream input)

Parameters

input Stream

The System.IO.Stream to compute the hash code for.

Returns

HashResult

A HashResult containing the computed hash code of the specified input.