|
QuickHash Library |
Type Library |
|
SHA384_Update
void SHA384_Update( [ in,out
]SHA384_Context* pContext, [ in , size_is( nSrcLength ) ] const void*
pSrc, [ in ] int nSrcLength );
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
continuous memory block with which to update the context.
nSrcLength
[in] Length in bytes
of the memory block.
Remarks
Updates (based on
SHA-2(384) hash
algorithm) the pContext context with the pSrc
memory block. Call this function for each continuous memory
block of the data for which the message digest is calculated. To retrieve the digest after using
SHA384_Update, call
SHA384_Final or
SHA384_FinalHex.
Note. Before the first call to SHA384_Update,
SHA384_UpdateStr,
SHA384_Final or
SHA384_FinalHex functions, the context
must be initialized with
SHA384_Init.
VB Example
See the example for
SHA384_Final.
Type Library Overview
| Type Library Functions
|
Useful Links | HashCalc
See Also
SHA384_UpdateStr,
SHA384_Final,
SHA384_FinalHex,
SHA384_Init
|