Base Hash class. Wraps all hashing functions.

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

Syntax

C#
public sealed class Hash : IHash, IDisposable
Visual Basic
Public NotInheritable Class Hash _
	Implements IHash, IDisposable
Visual C++
public ref class Hash sealed : IHash, 
	IDisposable

Examples

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

Inheritance Hierarchy

System..::..Object
  LLCryptoLib.Hash..::..Hash

See Also