diff options
author | jsing <> | 2025-08-31 09:33:30 +0000 |
---|---|---|
committer | jsing <> | 2025-08-31 09:33:30 +0000 |
commit | faea853ea68887727c76f113f0487e95e8aa0738 (patch) | |
tree | 4071a64b606a35b1e21de927cadeb15746eddf75 /src | |
parent | 694b88dc8ad458db9997e90128806a423fec09db (diff) | |
download | openbsd-faea853ea68887727c76f113f0487e95e8aa0738.tar.gz openbsd-faea853ea68887727c76f113f0487e95e8aa0738.tar.bz2 openbsd-faea853ea68887727c76f113f0487e95e8aa0738.zip |
Rename prototype for bn_mul_normal().
This was missed in the previous commit.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/bn/bn_local.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bn/bn_local.h b/src/lib/libcrypto/bn/bn_local.h index f38d841e9a..0356c4c00f 100644 --- a/src/lib/libcrypto/bn/bn_local.h +++ b/src/lib/libcrypto/bn/bn_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bn_local.h,v 1.56 2025/08/30 07:54:27 jsing Exp $ */ | 1 | /* $OpenBSD: bn_local.h,v 1.57 2025/08/31 09:33:30 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 | * |
@@ -239,10 +239,10 @@ BN_ULONG bn_add(BN_ULONG *r, int r_len, const BN_ULONG *a, int a_len, | |||
239 | BN_ULONG bn_sub(BN_ULONG *r, int r_len, const BN_ULONG *a, int a_len, | 239 | BN_ULONG bn_sub(BN_ULONG *r, int r_len, const BN_ULONG *a, int a_len, |
240 | const BN_ULONG *b, int b_len); | 240 | const BN_ULONG *b, int b_len); |
241 | 241 | ||
242 | void bn_mul_normal(BN_ULONG *r, BN_ULONG *a, int na, BN_ULONG *b, int nb); | ||
243 | void bn_mul_comba4(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b); | 242 | void bn_mul_comba4(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b); |
244 | void bn_mul_comba6(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b); | 243 | void bn_mul_comba6(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b); |
245 | void bn_mul_comba8(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b); | 244 | void bn_mul_comba8(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b); |
245 | void bn_mul_words(BN_ULONG *r, BN_ULONG *a, int a_len, BN_ULONG *b, int b_len); | ||
246 | 246 | ||
247 | void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a); | 247 | void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a); |
248 | void bn_sqr_comba6(BN_ULONG *r, const BN_ULONG *a); | 248 | void bn_sqr_comba6(BN_ULONG *r, const BN_ULONG *a); |