Name
hw_MD5 -- compute MD5 checksum (V6.0)
Synopsis
void hw_MD5(UBYTE *data, int len, STRPTR dest);
Function
This function computes the MD5 checksum of the data passed in the first parameter and writes the MD5 checksum to the string buffer passed in dest. The MD5 checksum is written as a 32-byte hexadecimal hash so make sure that the buffer you pass in dest can store at least 33 bytes.

Designer compatibility
Supported since Designer 5.0

Inputs
data
pointer to arbitrary memory data
len
number of bytes to read from pointer
dest
pointer to memory buffer to receive the MD5 hash

Show TOC