Initialises the MD5 context ready for subsequent calls with
MD5_AddString
, MD5_AddBytes
, and MD5_HexDigest
.
Public Declare Function MD5_Init Lib "diCryptoSys.dll"
() As Long
Dim hContext As Long
hContext = MD5_Init()
long __stdcall MD5_Init(void);
None.
non-zero handle of the MD5 context hContext. Returns zero if an error occurs.
It is important to check for a zero context handle and stop if one occurs.
See MD5_HexDigest
MD5_AddString
MD5_AddBytes
MD5_HexDigest
MD5_Reset