You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by Sander Striker <st...@samba-tng.org> on 2001/06/04 19:08:40 UTC

[PATCH] apr-util md4

Hi,

I've done a little bit of updating of the md4 code.
It adds some trivial error checking. Maybe someone
wants to complete this by adding the less trivial
error checks?

Second it adds a direct md4 computation function:

apr_status_t apr_md4(unsigned char digest[APR_MD4_DIGESTSIZE],
                     const unsigned char *input,
                     apr_size_t inputLen);

This will return the md4 digest of the given input block.

Sander