|
QuickHash Library |
Type Library |
|
ADLER32_UpdateStr
void ADLER32_UpdateStr( [ in,out
]ADLER32_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
ADLER32
checksum algorithm) the pContext context with the
null-terminated string specified by pSrc. Call this function for each null-terminated string for which the
checksum is calculated. To retrieve the checksum after using
ADLER32_UpdateStr, call
ADLER32_Final or
ADLER32_FinalHex.
Note. Before the first call to
ADLER32_Update,
ADLER32_UpdateStr,
ADLER32_Final or
ADLER32_FinalHex functions, the context
must be initialized with
ADLER32_Init.
VB Example
Private Sub MyButton_Click()
Dim Context As ADLER32_Context
Dim Checksum As ADLER32_Digest
Dim MyStrData As String
MyStrData = "Hello World!"
'Initialize the context
ADLER32_Init Context
'Update the context
ADLER32_UpdateStr Context, MyStrData
'Get the checksum
ADLER32_Final Context, Checksum
'Show the hexadecimal representation of the checksum
MsgBox QHASH_ConvertToHex(Checksum.Value(0), ADLER32_DIGESTSIZE, True)
End Sub
|
|
Type Library Overview
| Type Library Functions
|
Useful Links | HashCalc
See Also
ADLER32_Update,
ADLER32_Final,
ADLER32_FinalHex,
ADLER32_Init,
QHASH_ConvertToHex
|