summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bn/bn_mul.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/bn/bn_mul.c')
-rw-r--r--src/lib/libcrypto/bn/bn_mul.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/bn/bn_mul.c b/src/lib/libcrypto/bn/bn_mul.c
index 7ec7d43437..ebf34bb413 100644
--- a/src/lib/libcrypto/bn/bn_mul.c
+++ b/src/lib/libcrypto/bn/bn_mul.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_mul.c,v 1.40 2025/08/03 10:32:04 tb Exp $ */ 1/* $OpenBSD: bn_mul.c,v 1.41 2025/08/05 15:01:13 jsing Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -74,7 +74,7 @@
74 */ 74 */
75#ifndef HAVE_BN_MUL_COMBA4 75#ifndef HAVE_BN_MUL_COMBA4
76void 76void
77bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) 77bn_mul_comba4(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b)
78{ 78{
79 BN_ULONG c0, c1, c2; 79 BN_ULONG c0, c1, c2;
80 80
@@ -110,7 +110,7 @@ bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b)
110 */ 110 */
111#ifndef HAVE_BN_MUL_COMBA8 111#ifndef HAVE_BN_MUL_COMBA8
112void 112void
113bn_mul_comba8(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) 113bn_mul_comba8(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b)
114{ 114{
115 BN_ULONG c0, c1, c2; 115 BN_ULONG c0, c1, c2;
116 116