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 Stream.
HashResult ComputeHash(Stream input)
Parameters
Returns
- HashResult
A HashResult containing the computed hash code of the specified
input
.