diff --git a/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c b/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c index 5ac91916..fc2bc1ac 100644 --- a/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c +++ b/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c @@ -33,8 +33,10 @@ crypto_onetimeauth_poly1305(unsigned char *out, const unsigned char *in, } int -crypto_onetimeauth_poly1305_verify(const unsigned char *h, const unsigned char *in, - unsigned long long inlen, const unsigned char *k) +crypto_onetimeauth_poly1305_verify(const unsigned char *h, + const unsigned char *in, + unsigned long long inlen, + const unsigned char *k) { return implementation->onetimeauth_verify(h, in, inlen, k); }