masqmail

annotate src/md5/hmac_md5.h @ 8:7e01b9096bb6

removed tests from Makefiles
author meillo@marmaro.de
date Mon, 27 Oct 2008 16:20:41 +0100
parents
children 26e34ae9a3e3
rev   line source
meillo@0 1 void hmac_md5(unsigned char *text, int text_len,
meillo@0 2 unsigned char* key, int key_len, unsigned char *digest);
meillo@0 3 /* text; pointer to data stream */
meillo@0 4 /* text_len; length of data stream */
meillo@0 5 /* key; pointer to authentication key */
meillo@0 6 /* key_len; length of authentication key */
meillo@0 7 /* digest; caller digest to be filled in */