diff options
Diffstat (limited to 'nacl/crypto_onetimeauth/poly1305/53/verify.c')
-rw-r--r-- | nacl/crypto_onetimeauth/poly1305/53/verify.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/nacl/crypto_onetimeauth/poly1305/53/verify.c b/nacl/crypto_onetimeauth/poly1305/53/verify.c deleted file mode 100644 index c7e063f1..00000000 --- a/nacl/crypto_onetimeauth/poly1305/53/verify.c +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | #include "crypto_verify_16.h" | ||
2 | #include "crypto_onetimeauth.h" | ||
3 | |||
4 | int crypto_onetimeauth_verify(const unsigned char *h,const unsigned char *in,unsigned long long inlen,const unsigned char *k) | ||
5 | { | ||
6 | unsigned char correct[16]; | ||
7 | crypto_onetimeauth(correct,in,inlen,k); | ||
8 | return crypto_verify_16(h,correct); | ||
9 | } | ||