summaryrefslogtreecommitdiff
path: root/node/Poly1305.cpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-09-25 10:55:27 -0400
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-09-25 10:55:27 -0400
commitf3128a18fee6745317cdf1918fe3c3901958b1de (patch)
treeb93da854dd8a9bc7defc461abc65247534ca3664 /node/Poly1305.cpp
parent5557a8192db253ed125db26a3b8761fd528c2781 (diff)
downloadinfinitytier-f3128a18fee6745317cdf1918fe3c3901958b1de.tar.gz
infinitytier-f3128a18fee6745317cdf1918fe3c3901958b1de.zip
Work in progress...
Diffstat (limited to 'node/Poly1305.cpp')
-rw-r--r--node/Poly1305.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/node/Poly1305.cpp b/node/Poly1305.cpp
index 01f8de30..01889b51 100644
--- a/node/Poly1305.cpp
+++ b/node/Poly1305.cpp
@@ -90,7 +90,7 @@ static void mulmod(unsigned int h[17],const unsigned int r[17])
squeeze(h);
}
-static int crypto_onetimeauth(unsigned char *out,const unsigned char *in,unsigned long long inlen,const unsigned char *k)
+static inline int crypto_onetimeauth(unsigned char *out,const unsigned char *in,unsigned long long inlen,const unsigned char *k)
{
unsigned int j;
unsigned int r[17];