summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-04-10 15:09:03 +0000
committertb <>2024-04-10 15:09:03 +0000
commite569c2916cc01347d10e72523732a457eabf0997 (patch)
treeb68f53971d9e2eec36efbb782e3099fae8c53d24 /src
parente9f031c5bf19d665a70b4ada8d7323aa1cbee38b (diff)
downloadopenbsd-e569c2916cc01347d10e72523732a457eabf0997.tar.gz
openbsd-e569c2916cc01347d10e72523732a457eabf0997.tar.bz2
openbsd-e569c2916cc01347d10e72523732a457eabf0997.zip
Remove the prototype of BN_gcd_nonct()
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/bn/bn_local.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bn/bn_local.h b/src/lib/libcrypto/bn/bn_local.h
index 5acb546d07..2c82e323fa 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.40 2024/03/02 09:27:31 tb Exp $ */ 1/* $OpenBSD: bn_local.h,v 1.41 2024/04/10 15:09:03 tb 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 *
@@ -322,7 +322,6 @@ BIGNUM *BN_mod_inverse_ct(BIGNUM *ret, const BIGNUM *a, const BIGNUM *n,
322BIGNUM *BN_mod_inverse_nonct(BIGNUM *ret, const BIGNUM *a, const BIGNUM *n, 322BIGNUM *BN_mod_inverse_nonct(BIGNUM *ret, const BIGNUM *a, const BIGNUM *n,
323 BN_CTX *ctx); 323 BN_CTX *ctx);
324int BN_gcd_ct(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); 324int BN_gcd_ct(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
325int BN_gcd_nonct(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
326 325
327int BN_swap_ct(BN_ULONG swap, BIGNUM *a, BIGNUM *b, size_t nwords); 326int BN_swap_ct(BN_ULONG swap, BIGNUM *a, BIGNUM *b, size_t nwords);
328 327