From 4787a29394447314961ded43341dc5753d61eb08 Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 22 Nov 2024 17:27:05 +0000 Subject: Comment tweak from jsing with another tweak by me --- src/lib/libcrypto/ec/ec_mult.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/lib/libcrypto/ec/ec_mult.c b/src/lib/libcrypto/ec/ec_mult.c index 4dc5e12a46..205e04032f 100644 --- a/src/lib/libcrypto/ec/ec_mult.c +++ b/src/lib/libcrypto/ec/ec_mult.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ec_mult.c,v 1.46 2024/11/22 17:08:13 tb Exp $ */ +/* $OpenBSD: ec_mult.c,v 1.47 2024/11/22 17:27:05 tb Exp $ */ /* * Originally written by Bodo Moeller and Nils Larsch for the OpenSSL project. */ @@ -127,7 +127,7 @@ ec_compute_wNAF(const BIGNUM *bn, signed char **out_wNAF, size_t *out_wNAF_len, mask = next - 1; - /* Extract the wbits + 1 lowest bits without using BIGNUM internals. */ + /* Extract the wbits + 1 lowest bits from bn into window. */ window = 0; for (i = 0; i < wbits + 1; i++) { if (BN_is_bit_set(bn, i)) -- cgit v1.2.3-55-g6feb