summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/curve25519/curve25519.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/curve25519/curve25519.c b/src/lib/libcrypto/curve25519/curve25519.c
index 9c54b16d13..0aa3d2855b 100644
--- a/src/lib/libcrypto/curve25519/curve25519.c
+++ b/src/lib/libcrypto/curve25519/curve25519.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: curve25519.c,v 1.17 2025/07/17 00:55:48 kenjiro Exp $ */ 1/* $OpenBSD: curve25519.c,v 1.18 2025/07/29 10:52:20 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2015, Google Inc. 3 * Copyright (c) 2015, Google Inc.
4 * 4 *
@@ -3781,7 +3781,7 @@ ge_double_scalarmult_vartime(ge_p2 *r, const uint8_t *a,
3781 } 3781 }
3782} 3782}
3783 3783
3784/* 3784/*
3785 * int64_lshift21 returns |a << 21| but is defined when shifting bits into the 3785 * int64_lshift21 returns |a << 21| but is defined when shifting bits into the
3786 * sign bit. This works around a language flaw in C. 3786 * sign bit. This works around a language flaw in C.
3787 * 3787 *