Method | Description | |
---|---|---|
GetInstance ( System algorithm ) : MessageDigestSupport |
Generates a new instance of the MessageDigestSupport class using the specified algorithm
|
|
MessageDigestSupport ( System algorithm ) : System |
Creates a message digest using the specified name to set Algorithm property.
|
|
Reset ( ) : void |
Resets the digest data to the initial state.
|
|
ToString ( ) : string |
Returns a string representation of the Message Digest
|
|
Update ( byte newData ) : void |
Updates the digest data with the specified array of bytes by making an append operation in the internal array of data.
|
|
Update ( byte newData, int offset, int count ) : void |
Updates the specified count of bytes with the input array of bytes starting at the input offset.
|
Method | Description | |
---|---|---|
DigestData ( ) : sbyte[] | ||
DigestData ( byte newData ) : sbyte[] | ||
EquivalentDigest ( System firstDigest, System secondDigest ) : bool |
public static GetInstance ( System algorithm ) : MessageDigestSupport | ||
algorithm | System | The name of the algorithm to use |
return | MessageDigestSupport |
public MessageDigestSupport ( System algorithm ) : System | ||
algorithm | System | The name of the algorithm to use |
return | System |
public Update ( byte newData ) : void | ||
newData | byte | The array of bytes for the update operation |
return | void |
public Update ( byte newData, int offset, int count ) : void | ||
newData | byte | The array of bytes for the update operation |
offset | int | The initial position to start from in the array of bytes |
count | int | The number of bytes fot the update |
return | void |