diff options
| author | tb <> | 2024-12-07 13:49:43 +0000 |
|---|---|---|
| committer | tb <> | 2024-12-07 13:49:43 +0000 |
| commit | 5577b2fcde8eefb9fd237dae31de9f4614fcd372 (patch) | |
| tree | 898b655a4a59d20f61782515cddbfd9afee2ba80 /src | |
| parent | 1a524c98b12d0c956efd3bc3da96a8d79cf10098 (diff) | |
| download | openbsd-5577b2fcde8eefb9fd237dae31de9f4614fcd372.tar.gz openbsd-5577b2fcde8eefb9fd237dae31de9f4614fcd372.tar.bz2 openbsd-5577b2fcde8eefb9fd237dae31de9f4614fcd372.zip | |
ec_mult: forgot to make one helper static
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/libcrypto/ec/ec_mult.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ec/ec_mult.c b/src/lib/libcrypto/ec/ec_mult.c index 08c1196013..e7646842f3 100644 --- a/src/lib/libcrypto/ec/ec_mult.c +++ b/src/lib/libcrypto/ec/ec_mult.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: ec_mult.c,v 1.54 2024/12/07 13:32:07 tb Exp $ */ | 1 | /* $OpenBSD: ec_mult.c,v 1.55 2024/12/07 13:49:43 tb Exp $ */ |
| 2 | /* | 2 | /* |
| 3 | * Originally written by Bodo Moeller and Nils Larsch for the OpenSSL project. | 3 | * Originally written by Bodo Moeller and Nils Larsch for the OpenSSL project. |
| 4 | */ | 4 | */ |
| @@ -301,7 +301,7 @@ ec_wnaf_digit(struct ec_wnaf *wnaf, size_t idx) | |||
| 301 | return wnaf->digits[idx]; | 301 | return wnaf->digits[idx]; |
| 302 | } | 302 | } |
| 303 | 303 | ||
| 304 | const EC_POINT * | 304 | static const EC_POINT * |
| 305 | ec_wnaf_multiple(struct ec_wnaf *wnaf, signed char digit) | 305 | ec_wnaf_multiple(struct ec_wnaf *wnaf, signed char digit) |
| 306 | { | 306 | { |
| 307 | if (digit < 0) | 307 | if (digit < 0) |
