#MD5CryptoServiceProvider
##Properties
| Datatype | Property name | Property description | Default Value |
|---|---|---|---|
| Boolean | CanReuseTransform | True | |
| Boolean | CanTransformMultipleBlocks | True | |
| Byte[] | Hash | null | |
| Int32 | HashSize | 128 | |
| Int32 | InputBlockSize | 1 | |
| Int32 | OutputBlockSize | 1 |
##Methods
###Clear()
###ComputeHash(System.Byte[])
Parameters:
- System.Byte[] buffer
###ComputeHash(System.Byte[],System.Int32,System.Int32)
Parameters:
- System.Byte[] buffer
- System.Int32 offset
- System.Int32 count
###ComputeHash(System.IO.Stream)
Parameters:
- System.IO.Stream inputStream
###Dispose() Disposes the object and frees up memory used by it.
###Equals(System.Object) Determines whether the specified System.Object is equal to the current System.Object.
Parameters:
- System.Object obj - The System.Object to compare with the current System.Object.
Returns:
true if the specified System.Object is equal to the current System.Object; otherwise, false.
###GetHashCode() Serves as a hash function for a particular type.
Returns:
A hash code for the current System.Object.
###GetType() Gets the System.Type of the current instance.
Returns:
The System.Type instance that represents the exact runtime type of the current instance.
###Initialize() MD5 initialization. Begins an MD5 operation, writing a new context.
###ToString() Returns a System.String that represents the current System.Object.
Returns:
A System.String that represents the current System.Object.
###TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)
Parameters:
- System.Byte[] inputBuffer
- System.Int32 inputOffset
- System.Int32 inputCount
- System.Byte[] outputBuffer
- System.Int32 outputOffset
###TransformFinalBlock(System.Byte[],System.Int32,System.Int32)
Parameters:
- System.Byte[] inputBuffer
- System.Int32 inputOffset
- System.Int32 inputCount
