From 1d4a2aabac82edc29ddf2df7f23914e0b15c826a Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sun, 1 Nov 2015 12:51:04 +0100 Subject: [PATCH] Reindent --- .../poly1305/onetimeauth_poly1305.h | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.h b/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.h index 703485a6..0dca3966 100644 --- a/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.h +++ b/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.h @@ -3,21 +3,21 @@ #define onetimeauth_poly1305_H typedef struct crypto_onetimeauth_poly1305_implementation { - int (*onetimeauth)(unsigned char *out, - const unsigned char *in, - unsigned long long inlen, - const unsigned char *k); - int (*onetimeauth_verify)(const unsigned char *h, - const unsigned char *in, - unsigned long long inlen, - const unsigned char *k); - int (*onetimeauth_init)(crypto_onetimeauth_poly1305_state *state, - const unsigned char *key); - int (*onetimeauth_update)(crypto_onetimeauth_poly1305_state *state, - const unsigned char *in, - unsigned long long inlen); - int (*onetimeauth_final)(crypto_onetimeauth_poly1305_state *state, - unsigned char *out); + int (*onetimeauth)(unsigned char *out, + const unsigned char *in, + unsigned long long inlen, + const unsigned char *k); + int (*onetimeauth_verify)(const unsigned char *h, + const unsigned char *in, + unsigned long long inlen, + const unsigned char *k); + int (*onetimeauth_init)(crypto_onetimeauth_poly1305_state *state, + const unsigned char *key); + int (*onetimeauth_update)(crypto_onetimeauth_poly1305_state *state, + const unsigned char *in, + unsigned long long inlen); + int (*onetimeauth_final)(crypto_onetimeauth_poly1305_state *state, + unsigned char *out); } crypto_onetimeauth_poly1305_implementation; #endif