Interface IHash
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
.