|
QuickHash Library |
Type Library |
|
RIPEMD160_CalculateStr
void RIPEMD160_CalculateStr(
[out]RIPEMD160_Digest* pDigest, [ in , string ] unsigned char*
pSrc );
Parameters
pDigest
[out] A memory
buffer that will receive the message digest.
Note. All predefined types are specified in the
Predefined Types List.
pSrc
[in] A
null-terminated string for which to calculate the message digest.
Remarks
Calculates the
RIPEMD-160 message digest for the
null-terminated string
specified by pSrc. The digest is retrieved in the pDigest
memory buffer.
VB Example
Private Sub MyButton_Click()
Dim Digest As RIPEMD160_Digest
Dim MyStrData As String
MyStrData = "Hello World!"
'Get the digest
RIPEMD160_CalculateStr Digest, MyStrData
'Show the hexadecimal representation of the digest
MsgBox QHASH_ConvertToHex(Digest.Value(0), RIPEMD160_DIGESTSIZE, True)
End Sub
|
|
Type Library Overview
| Type Library Functions
|
Useful Links | HashCalc
See Also
RIPEMD160_CalculateStrHex,
RIPEMD160_Calculate,
RIPEMD160_CalculateHex,
QHASH_ConvertToHex
|