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:31:28 UTC

[PATCH] apr md5

Hi,

Analoge to the previous patch for md4, now the
same for md5.

 - adds some trivial error checking. Maybe someone
   wants to complete this by adding the less trivial
   error checks?

 - adds a direct md5 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 md5 digest of the given input block.

Sander