#MD5
##Properties
| Datatype | Property name | Property description | Default Value |
|---|---|---|---|
| Boolean | CanReuseTransform | null | |
| Boolean | CanTransformMultipleBlocks | null | |
| Byte[] | Hash | null | |
| Int32 | HashSize | null | |
| Int32 | InputBlockSize | null | |
| Int32 | OutputBlockSize | null |
##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
###Create(System.String) Initializes a new MD5 encryption using the specified hashing algorithm.
Parameters:
- System.String hashName - The name of the hashing algorithm that will be used.
Returns:
The MD5 encryption provider.
###Create() Initializes a new MD5 encryption using the default hashing algorithm.
Returns:
The MD5 encryption provider.
###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.
###GetMd5String(System.String) Produces an encrypted System.String value of the input value using MD5 encyrption.
Parameters:
- System.String source - The source System.String to perform encryption on.
###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
