summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2025-01-11 21:13:21 +0000
committertb <>2025-01-11 21:13:21 +0000
commit651b6ec604b1295ca4893027e48824738b937831 (patch)
tree888175b086808d3344149894b4d0be4f0b5ee90a
parent22081f1783889590b321c44967709d1831b1bac2 (diff)
downloadopenbsd-651b6ec604b1295ca4893027e48824738b937831.tar.gz
openbsd-651b6ec604b1295ca4893027e48824738b937831.tar.bz2
openbsd-651b6ec604b1295ca4893027e48824738b937831.zip
Align vertical backslashes in a macro
-rw-r--r--src/lib/libcrypto/ec/ecp_methods.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ec/ecp_methods.c b/src/lib/libcrypto/ec/ecp_methods.c
index 4ab5c35080..d4e26ac262 100644
--- a/src/lib/libcrypto/ec/ecp_methods.c
+++ b/src/lib/libcrypto/ec/ecp_methods.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ecp_methods.c,v 1.34 2025/01/11 21:07:25 tb Exp $ */ 1/* $OpenBSD: ecp_methods.c,v 1.35 2025/01/11 21:13:21 tb Exp $ */
2/* Includes code written by Lenka Fibikova <fibikova@exp-math.uni-essen.de> 2/* Includes code written by Lenka Fibikova <fibikova@exp-math.uni-essen.de>
3 * for the OpenSSL project. 3 * for the OpenSSL project.
4 * Includes code written by Bodo Moeller for the OpenSSL project. 4 * Includes code written by Bodo Moeller for the OpenSSL project.
@@ -1006,7 +1006,7 @@ ec_blind_coordinates(const EC_GROUP *group, EC_POINT *p, BN_CTX *ctx)
1006#define EC_POINT_CSWAP(c, a, b, w, t) do { \ 1006#define EC_POINT_CSWAP(c, a, b, w, t) do { \
1007 if (!BN_swap_ct(c, (a)->X, (b)->X, w) || \ 1007 if (!BN_swap_ct(c, (a)->X, (b)->X, w) || \
1008 !BN_swap_ct(c, (a)->Y, (b)->Y, w) || \ 1008 !BN_swap_ct(c, (a)->Y, (b)->Y, w) || \
1009 !BN_swap_ct(c, (a)->Z, (b)->Z, w)) \ 1009 !BN_swap_ct(c, (a)->Z, (b)->Z, w)) \
1010 goto err; \ 1010 goto err; \
1011 t = ((a)->Z_is_one ^ (b)->Z_is_one) & (c); \ 1011 t = ((a)->Z_is_one ^ (b)->Z_is_one) & (c); \
1012 (a)->Z_is_one ^= (t); \ 1012 (a)->Z_is_one ^= (t); \