summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2023-02-15 04:46:50 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2023-02-15 04:46:50 +0000
commit141609031b3d92265b4b58b88e87f25494382e3c (patch)
treedc67ffa0705f78e4b6cbabf1184bfae5ad670503
parent0cdaed8bc674ac91358af65e75cd12d17d3a103a (diff)
zap tab
-rw-r--r--lib/libcrypto/bn/bn_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/bn/bn_internal.h b/lib/libcrypto/bn/bn_internal.h
index ab3efd14f46..12ea3641e62 100644
--- a/lib/libcrypto/bn/bn_internal.h
+++ b/lib/libcrypto/bn/bn_internal.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bn_internal.h,v 1.3 2023/02/14 18:31:02 jsing Exp $ */
+/* $OpenBSD: bn_internal.h,v 1.4 2023/02/15 04:46:49 tb Exp $ */
/*
* Copyright (c) 2023 Joel Sing <jsing@openbsd.org>
*
@@ -156,7 +156,7 @@ bn_umul_hilo(BN_ULONG a, BN_ULONG b, BN_ULONG *out_h, BN_ULONG *out_l)
c2 = l & x;
l += x;
h += ((c1 & ~l) | c2) >> (BN_BITS2 - 1); /* carry */
-
+
/* (bh * al) << BN_BITS4, partition the result across h:l with carry. */
x = bh * al;
h += x >> BN_BITS4;