From: tb Date: Wed, 15 Feb 2023 04:46:49 +0000 (+0000) Subject: zap tab X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=909740809944506fc909263969b530ae7471abbd;p=openbsd zap tab --- 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;