From e39f46a9f986a1857d375ac081228499b760e96b Mon Sep 17 00:00:00 2001 From: Lucas Gabriel Vuotto Date: Wed, 19 Jun 2024 13:25:23 +0000 Subject: [PATCH] internal: wrap overlong lines --- internal.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/internal.h b/internal.h index c05d4b5..f73487d 100644 --- a/internal.h +++ b/internal.h @@ -54,8 +54,8 @@ /* - * *_impl provides the function pointers to the actual implementation of methods, - * serving as an interface to the cryptographic algorithms. + * *_impl provides the function pointers to the actual implementation of + * methods, serving as an interface to the cryptographic algorithms. */ struct lc_aead_impl { @@ -117,8 +117,8 @@ struct lc_kdf_impl { /* - * *_ctx binds an *_impl with an state, effectively representing an instance of a - * cryptographic algorithm. + * *_ctx binds an *_impl with an state, effectively representing an instance of + * a cryptographic algorithm. */ struct lc_auth_ctx { @@ -193,7 +193,8 @@ struct sha512_state { /* Authentitcation. */ void poly1305_block(struct poly1305_state *, uint32_t); -void poly1305_reduce(struct poly1305_state *, uint32_t [POLY1305_TAGLEN_WORDS]); +void poly1305_reduce(struct poly1305_state *, + uint32_t [POLY1305_TAGLEN_WORDS]); /* Ciphers. */