summaryrefslogtreecommitdiff
path: root/lib/libcrypto
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2024-11-10 05:59:36 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2024-11-10 05:59:36 +0000
commit65b01f0d0c6a17fea143fdcefdff54620efddf9e (patch)
tree078df20596407789675932db0f5578368e651f70 /lib/libcrypto
parent19cd783af1fb8d2dca89d74de94d8c2842f5c08f (diff)
Wrap comment badly mistreated by an autoformatter due to missing /*-
Diffstat (limited to 'lib/libcrypto')
-rw-r--r--lib/libcrypto/ec/ec_mult.c9
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) {