diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-11-10 05:59:36 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-11-10 05:59:36 +0000 |
commit | 65b01f0d0c6a17fea143fdcefdff54620efddf9e (patch) | |
tree | 078df20596407789675932db0f5578368e651f70 /lib/libcrypto | |
parent | 19cd783af1fb8d2dca89d74de94d8c2842f5c08f (diff) |
Wrap comment badly mistreated by an autoformatter due to missing /*-
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/ec/ec_mult.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/libcrypto/ec/ec_mult.c b/lib/libcrypto/ec/ec_mult.c index a74c00d7dc8..d810879d687 100644 --- a/lib/libcrypto/ec/ec_mult.c +++ b/lib/libcrypto/ec/ec_mult.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ec_mult.c,v 1.32 2024/11/10 00:46:57 tb Exp $ */ +/* $OpenBSD: ec_mult.c,v 1.33 2024/11/10 05:59:35 tb Exp $ */ /* * Originally written by Bodo Moeller and Nils Larsch for the OpenSSL project. */ @@ -350,8 +350,11 @@ ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, goto err; /* - * prepare precomputed values: val_sub[i][0] := points[i] - * val_sub[i][1] := 3 * points[i] val_sub[i][2] := 5 * points[i] ... + * prepare precomputed values: + * val_sub[i][0] := points[i] + * val_sub[i][1] := 3 * points[i] + * val_sub[i][2] := 5 * points[i] + * ... */ for (i = 0; i < num + num_scalar; i++) { if (i < num) { |