summaryrefslogtreecommitdiffhomepage
path: root/libtomcrypt/src/mac
diff options
context:
space:
mode:
Diffstat (limited to 'libtomcrypt/src/mac')
-rw-r--r--libtomcrypt/src/mac/hmac/hmac_file.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libtomcrypt/src/mac/hmac/hmac_file.c b/libtomcrypt/src/mac/hmac/hmac_file.c
index b296320..d7c40b1 100644
--- a/libtomcrypt/src/mac/hmac/hmac_file.c
+++ b/libtomcrypt/src/mac/hmac/hmac_file.c
@@ -32,6 +32,7 @@ int hmac_file(int hash, const char *fname,
unsigned char *out, unsigned long *outlen)
{
#ifdef LTC_NO_FILE
+ (void)hash; (void)fname; (void)key; (void)keylen; (void)out; (void)outlen;
return CRYPT_NOP;
#else
hmac_state hmac;