C# Class NetworkCommsDotNet.Tools.MD5Managed.MD5Managed

Create a managed MD5 hash calculator
Inheritance: System.Security.Cryptography.MD5
Show file Open project: MarcFletcher/NetworkComms.Net

Public Methods

Method Description
Initialize ( ) : void

Initialise the MD5 hash calculator

MD5Managed ( ) : System

Create a new instance of the MD5 hash calculator

Protected Methods

Method Description
HashCore ( byte array, int ibStart, int cbSize ) : void

Calculate the core hash

HashFinal ( ) : byte[]

Get the final hash

Method Details

HashCore() protected method

Calculate the core hash
protected HashCore ( byte array, int ibStart, int cbSize ) : void
array byte
ibStart int
cbSize int
return void

HashFinal() protected method

Get the final hash
protected HashFinal ( ) : byte[]
return byte[]

Initialize() public method

Initialise the MD5 hash calculator
public Initialize ( ) : void
return void

MD5Managed() public method

Create a new instance of the MD5 hash calculator
public MD5Managed ( ) : System
return System