From: jsing Date: Tue, 7 Mar 2023 05:57:01 +0000 (+0000) Subject: Fix comment for bn_mul2_mulw_addtw() X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=b47e8ee9c8227988033d2b8b0201d77b929db5f0;p=openbsd Fix comment for bn_mul2_mulw_addtw() --- diff --git a/lib/libcrypto/bn/bn_internal.h b/lib/libcrypto/bn/bn_internal.h index 859f00d05d8..4f4d1c31f5e 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.9 2023/02/17 05:13:34 jsing Exp $ */ +/* $OpenBSD: bn_internal.h,v 1.10 2023/03/07 05:57:01 jsing Exp $ */ /* * Copyright (c) 2023 Joel Sing * @@ -362,10 +362,10 @@ bn_mulw_addtw(BN_ULONG a, BN_ULONG b, BN_ULONG c2, BN_ULONG c1, BN_ULONG c0, #endif /* - * bn_mulw_addtw() computes (r2:r1:r0) = 2 * a * b + (c2:c1:c0), where a and b - * are single words and (c2:c1:c0) is a triple word, producing a triple word - * result. The caller must ensure that the inputs provided do not result in c2 - * overflowing. + * bn_mul2_mulw_addtw() computes (r2:r1:r0) = 2 * a * b + (c2:c1:c0), where a + * and b are single words and (c2:c1:c0) is a triple word, producing a triple + * word result. The caller must ensure that the inputs provided do not result + * in c2 overflowing. */ #ifndef HAVE_BN_MUL2_MULW_ADDTW static inline void