Base interface for all Hash objects.

Namespace: LLCryptoLib.Hash
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public interface IHash
Visual Basic
Public Interface IHash
Visual C++
public interface class IHash

Examples

CopyC#
IHash hashObject = new Hash();
hashObject.SetAlgorithm(AvailableHash.MD5);
Console.WriteLine("MD5 hash: {0}", hashObject.ComputeHashFileStyle(fileToHash.FullName, HexStyle.UNIX));

See Also