|
QuickHash Library |
Type Library |
|
SHA512_UpdateStr
void SHA512_UpdateStr( [ in,out
]SHA512_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
SHA-2(512) 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
SHA512_UpdateStr, call
SHA512_Final or
SHA512_FinalHex.
Note. Before the first call to
SHA512_Update,
SHA512_UpdateStr,
SHA512_Final or
SHA512_FinalHex functions, the context
must be initialized with
SHA512_Init.
VB Example
Private Sub MyButton_Click()
Dim Context As SHA512_Context
Dim Digest As SHA512_Digest
Dim MyStrData As String
MyStrData = "Hello World!"
'Initialize the context
SHA512_Init Context
'Update the context
SHA512_UpdateStr Context, MyStrData
'Get the digest
SHA512_Final Context, Digest
'Show the hexadecimal representation of the digest
MsgBox QHASH_ConvertToHex(Digest.Value(0), SHA512_DIGESTSIZE, True)
End Sub
|
|
Type Library Overview
| Type Library Functions
|
Useful Links | HashCalc
See Also
SHA512_Update,
SHA512_Final,
SHA512_FinalHex,
SHA512_Init,
QHASH_ConvertToHex
|