aboutsummaryrefslogtreecommitdiffstats
path: root/epan/crypt-md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'epan/crypt-md5.h')
-rw-r--r--epan/crypt-md5.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/crypt-md5.h b/epan/crypt-md5.h
index 5eb6d6c469..8581c90f0a 100644
--- a/epan/crypt-md5.h
+++ b/epan/crypt-md5.h
@@ -84,6 +84,9 @@ void md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes);
/* Finish the message and return the digest. */
void md5_finish(md5_state_t *pms, md5_byte_t digest[16]);
+ /* compute the MD5 HMAC */
+void md5_hmac(const md5_byte_t *data, int len, md5_byte_t *key_data, int key_length, md5_byte_t digest[16]);
+
#ifdef __cplusplus
} /* end extern "C" */
#endif