Returns the final message digest value from the HASH context.
Public Declare Function HASH_Final Lib "diCryptoSys.dll" (ByRef lpOutput As Byte, ByVal nOutLen As Long, ByVal hContext As Long) As Long
nRet = HASH_Final(lpOutput(0), nOutLen, hContext)
long __stdcall HASH_Final(unsigned char *lpOutput, long nOutLen, long hContext);
If successful, the return value is the number of bytes in the output array; otherwise it returns a negative error code.
Public Function hashFinal
(hContext As Long) As Byte()
bvec_t crsysapi::Hash::Final ()
Computes the result of all HASH_AddBytes
calls since HASH_Init
.
Once called, the context is destroyed.
See HASH_AddBytes
.