-rw-r--r-- 293 lib1305-20250415/crypto_onetimeauth/poly1305/ref/verify.c raw
#include "crypto_verify_16.h" #include "crypto_onetimeauth.h" int crypto_onetimeauth_verify(const unsigned char *h,const unsigned char *in,long long inlen,const unsigned char *k) { unsigned char correct[16]; crypto_onetimeauth(correct,in,inlen,k); return crypto_verify_16(h,correct); }