From 973ae30e7c4f7a1afb385dd3d8eeea178f981445 Mon Sep 17 00:00:00 2001 From: Jannis Hoffmann Date: Mon, 8 Jul 2024 13:24:39 +0200 Subject: fix deprecated prototypes --- src/hmac_md5.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/hmac_md5.c') diff --git a/src/hmac_md5.c b/src/hmac_md5.c index 5c46653..6b0fd0d 100644 --- a/src/hmac_md5.c +++ b/src/hmac_md5.c @@ -1,5 +1,6 @@ +#include "hmac_md5.h" + #include "byte.h" -#include "str.h" #include "global.h" #include "md5.h" @@ -11,7 +12,7 @@ int text_len : length of challenge unsigned char *key : pointer to password int key_len : length of password - output: unsigned char *digest: pointer to calculated digest + output: unsigned char *digest: pointer to calculated digest */ void hmac_md5(unsigned char *text, int text_len, unsigned char *key, int key_len, unsigned char *digest) -- cgit v1.2.3