From c3d9659fc6edf6aa739b5c96f8540feeca4a1251 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Fri, 19 Apr 2013 10:46:16 +0200 Subject: [PATCH] 80 columns whenever possible --- .../crypto_onetimeauth/poly1305/onetimeauth_poly1305.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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); }