|
QuickHash Library |
Type Library |
|
RIPEMD320_UpdateStr
void RIPEMD320_UpdateStr( [ in,out
]RIPEMD320_Context* pContext, [ in , string ] unsigned char* pSrc
);
Parameters
pContext
[in/out] A memory buffer
that is used as the context.
Note. All predefined types are specified in the
Predefined Types List.
pSrc
[in] A
null-terminated string with which to update the context.
Remarks
Updates (based on
RIPEMD-320 hash algorithm) the pContext context with the
null-terminated string specified by pSrc. Call this function for each null-terminated string for which the message digest is calculated. To retrieve the digest after using
RIPEMD320_UpdateStr, call
RIPEMD320_Final or
RIPEMD320_FinalHex.
Note. Before the first call to
RIPEMD320_Update,
RIPEMD320_UpdateStr,
RIPEMD320_Final or
RIPEMD320_FinalHex functions, the context
must be initialized with
RIPEMD320_Init.
VB Example
Private Sub MyButton_Click()
Dim Context As RIPEMD320_Context
Dim Digest As RIPEMD320_Digest
Dim MyStrData As String
MyStrData = "Hello World!"
'Initialize the context
RIPEMD320_Init Context
'Update the context
RIPEMD320_UpdateStr Context, MyStrData
'Get the digest
RIPEMD320_Final Context, Digest
'Show the hexadecimal representation of the digest
MsgBox QHASH_ConvertToHex(Digest.Value(0), RIPEMD320_DIGESTSIZE, True)
End Sub
|
|
Type Library Overview
| Type Library Functions
|
Useful Links | HashCalc
See Also
RIPEMD320_Update,
RIPEMD320_Final,
RIPEMD320_FinalHex,
RIPEMD320_Init,
QHASH_ConvertToHex
|