summaryrefslogtreecommitdiff
path: root/libtomcrypt/src/mac/poly1305/poly1305_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtomcrypt/src/mac/poly1305/poly1305_file.c')
-rw-r--r--libtomcrypt/src/mac/poly1305/poly1305_file.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libtomcrypt/src/mac/poly1305/poly1305_file.c b/libtomcrypt/src/mac/poly1305/poly1305_file.c
index 7726305..e57437b 100644
--- a/libtomcrypt/src/mac/poly1305/poly1305_file.c
+++ b/libtomcrypt/src/mac/poly1305/poly1305_file.c
@@ -28,6 +28,11 @@
int poly1305_file(const char *fname, const unsigned char *key, unsigned long keylen, unsigned char *mac, unsigned long *maclen)
{
#ifdef LTC_NO_FILE
+ LTC_UNUSED_PARAM(fname);
+ LTC_UNUSED_PARAM(key);
+ LTC_UNUSED_PARAM(keylen);
+ LTC_UNUSED_PARAM(mac);
+ LTC_UNUSED_PARAM(maclen);
return CRYPT_NOP;
#else
poly1305_state st;