summaryrefslogtreecommitdiffhomepage
path: root/libtomcrypt/src/mac/poly1305/poly1305_file.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2020-06-10 23:16:13 +0800
committerMatt Johnston <matt@ucc.asn.au>2020-06-10 23:16:13 +0800
commit4b305c5721f68e39320ca2e15b03a411da2305f1 (patch)
tree5b1698939cf893223f14cec77ed446f28a7d921a /libtomcrypt/src/mac/poly1305/poly1305_file.c
parent615885be01188e433cf931e2f7f85394fdc31c5d (diff)
Merge libtomcrypt v1.18.2
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;