summaryrefslogtreecommitdiff
path: root/umac.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2017-11-28 06:09:38 +0000
committerDamien Miller <djm@mindrot.org>2017-11-28 17:19:06 +1100
commit2937dd02c572a12f33d5c334d518f6cbe0b645eb (patch)
tree38d74479e900a4aaf9cb057b6a13f2f052a33902 /umac.c
parent7f257bf3fd3a759f31098960cbbd1453fafc4164 (diff)
downloadopenssh-git-2937dd02c572a12f33d5c334d518f6cbe0b645eb.tar.gz
upstream commit
more whitespace errors OpenBSD-Commit-ID: 5e11c125378327b648940b90145e0d98beb05abb
Diffstat (limited to 'umac.c')
-rw-r--r--umac.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/umac.c b/umac.c
index b1997fc2..b6b256a7 100644
--- a/umac.c
+++ b/umac.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: umac.c,v 1.14 2017/11/28 06:04:51 djm Exp $ */
+/* $OpenBSD: umac.c,v 1.15 2017/11/28 06:09:38 djm Exp $ */
/* -----------------------------------------------------------------------
*
* umac.c -- C Implementation UMAC Message Authentication
@@ -682,7 +682,7 @@ static void nh_final(nh_ctx *hc, UINT8 *result)
nh_transform(hc, hc->data, nh_len);
hc->bytes_hashed += hc->next_data_empty;
} else if (hc->bytes_hashed == 0) {
- nh_len = L1_PAD_BOUNDARY;
+ nh_len = L1_PAD_BOUNDARY;
zero_pad(hc->data, L1_PAD_BOUNDARY);
nh_transform(hc, hc->data, nh_len);
}
@@ -1133,10 +1133,10 @@ static int uhash(uhash_ctx_t ahc, u_char *msg, long len, u_char *res)
* the polyhash.
*/
if (len <= L1_KEY_LEN) {
- if (len == 0) /* If zero length messages will not */
- nh_len = L1_PAD_BOUNDARY; /* be seen, comment out this case */
- else
- nh_len = ((len + (L1_PAD_BOUNDARY - 1)) & ~(L1_PAD_BOUNDARY - 1));
+ if (len == 0) /* If zero length messages will not */
+ nh_len = L1_PAD_BOUNDARY; /* be seen, comment out this case */
+ else
+ nh_len = ((len + (L1_PAD_BOUNDARY - 1)) & ~(L1_PAD_BOUNDARY - 1));
extra_zeroes_needed = nh_len - len;
zero_pad((UINT8 *)msg + len, extra_zeroes_needed);
nh(&ahc->hash, (UINT8 *)msg, nh_len, len, nh_result);