From 909740809944506fc909263969b530ae7471abbd Mon Sep 17 00:00:00 2001 From: tb Date: Wed, 15 Feb 2023 04:46:49 +0000 Subject: [PATCH] zap tab --- lib/libcrypto/bn/bn_internal.h | 4 ++-- 1 file 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 * @@ -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; -- 2.20.1