Fix line wrapping.
authorjsing <jsing@openbsd.org>
Thu, 28 Mar 2024 04:23:02 +0000 (04:23 +0000)
committerjsing <jsing@openbsd.org>
Thu, 28 Mar 2024 04:23:02 +0000 (04:23 +0000)
lib/libcrypto/sha/sha256.c

index 00c9368..d18e8d2 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: sha256.c,v 1.30 2023/08/11 15:27:28 jsing Exp $ */
+/* $OpenBSD: sha256.c,v 1.31 2024/03/28 04:23:02 jsing Exp $ */
 /* ====================================================================
  * Copyright (c) 1998-2011 The OpenSSL Project.  All rights reserved.
  *
@@ -131,16 +131,14 @@ Maj(SHA_LONG x, SHA_LONG y, SHA_LONG z)
 }
 
 static inline void
-sha256_msg_schedule_update(SHA_LONG *W0, SHA_LONG W1,
-    SHA_LONG W9, SHA_LONG W14)
+sha256_msg_schedule_update(SHA_LONG *W0, SHA_LONG W1, SHA_LONG W9, SHA_LONG W14)
 {
        *W0 = sigma1(W14) + W9 + sigma0(W1) + *W0;
 }
 
 static inline void
-sha256_round(SHA_LONG *a, SHA_LONG *b, SHA_LONG *c, SHA_LONG *d,
-    SHA_LONG *e, SHA_LONG *f, SHA_LONG *g, SHA_LONG *h,
-    SHA_LONG Kt, SHA_LONG Wt)
+sha256_round(SHA_LONG *a, SHA_LONG *b, SHA_LONG *c, SHA_LONG *d, SHA_LONG *e,
+    SHA_LONG *f, SHA_LONG *g, SHA_LONG *h, SHA_LONG Kt, SHA_LONG Wt)
 {
        SHA_LONG T1, T2;