diff options
author | tb <> | 2023-08-02 08:44:38 +0000 |
---|---|---|
committer | tb <> | 2023-08-02 08:44:38 +0000 |
commit | 573bb95a0f3f3af6671f0d3f00fd2c7e9ecdfcfe (patch) | |
tree | fe8ccb5d64600cac34ecaa40b819e484d50ae3be /src/lib/libcrypto/bn/bn_blind.c | |
parent | a84053cabae35f4a87f7ac66ed02deb3b7c3be52 (diff) | |
download | openbsd-573bb95a0f3f3af6671f0d3f00fd2c7e9ecdfcfe.tar.gz openbsd-573bb95a0f3f3af6671f0d3f00fd2c7e9ecdfcfe.tar.bz2 openbsd-573bb95a0f3f3af6671f0d3f00fd2c7e9ecdfcfe.zip |
Drop the _ex from BN_BLINDING_{convert,invert}_ex()
Diffstat (limited to 'src/lib/libcrypto/bn/bn_blind.c')
-rw-r--r-- | src/lib/libcrypto/bn/bn_blind.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/bn/bn_blind.c b/src/lib/libcrypto/bn/bn_blind.c index fad103705f..93a64dbfed 100644 --- a/src/lib/libcrypto/bn/bn_blind.c +++ b/src/lib/libcrypto/bn/bn_blind.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bn_blind.c,v 1.29 2023/08/02 08:39:04 tb Exp $ */ | 1 | /* $OpenBSD: bn_blind.c,v 1.30 2023/08/02 08:44:38 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -215,7 +215,7 @@ err: | |||
215 | } | 215 | } |
216 | 216 | ||
217 | int | 217 | int |
218 | BN_BLINDING_convert_ex(BIGNUM *n, BIGNUM *r, BN_BLINDING *b, BN_CTX *ctx) | 218 | BN_BLINDING_convert(BIGNUM *n, BIGNUM *r, BN_BLINDING *b, BN_CTX *ctx) |
219 | { | 219 | { |
220 | int ret = 1; | 220 | int ret = 1; |
221 | 221 | ||
@@ -243,7 +243,7 @@ BN_BLINDING_convert_ex(BIGNUM *n, BIGNUM *r, BN_BLINDING *b, BN_CTX *ctx) | |||
243 | } | 243 | } |
244 | 244 | ||
245 | int | 245 | int |
246 | BN_BLINDING_invert_ex(BIGNUM *n, const BIGNUM *r, BN_BLINDING *b, BN_CTX *ctx) | 246 | BN_BLINDING_invert(BIGNUM *n, const BIGNUM *r, BN_BLINDING *b, BN_CTX *ctx) |
247 | { | 247 | { |
248 | int ret; | 248 | int ret; |
249 | 249 | ||