One-shot MD5 helpers.
- Arguments:
pOutput: destination digest buffer.nSize: destination size, must be at least16.pInput: input bytes.nLength: input length.
- Does:
- computes raw 16-byte MD5 digest.
- Returns:
XSTDOKon success.XSTDINVon invalid args such as zero length or too-small output.XSTDERRon allocation/internal failure.
- Arguments:
pInput: input bytes.nLength: input length.
- Does:
- computes MD5 and returns raw digest bytes.
- Returns:
- allocated
16 + 1buffer orNULL.
- allocated
- Arguments:
- input bytes and length.
- Does:
- computes MD5 and renders lowercase 32-character hex.
- Returns:
- allocated string or
NULL.
- allocated string or