diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-04-10 15:09:04 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-04-10 15:09:04 +0000 |
commit | 90f2dae8fbf30d43e2b4a0654a9a5fcb45a72cad (patch) | |
tree | 42153813f091a5dc5bdc7dee68424c050420cb2a | |
parent | 6e6577a6c4507e45221ee158b5a7bfb739d191f0 (diff) |
Remove the prototype of BN_gcd_nonct()
-rw-r--r-- | lib/libcrypto/bn/bn_local.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libcrypto/bn/bn_local.h b/lib/libcrypto/bn/bn_local.h index 5acb546d078..2c82e323faa 100644 --- a/lib/libcrypto/bn/bn_local.h +++ b/lib/libcrypto/bn/bn_local.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_local.h,v 1.40 2024/03/02 09:27:31 tb Exp $ */ +/* $OpenBSD: bn_local.h,v 1.41 2024/04/10 15:09:03 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -322,7 +322,6 @@ BIGNUM *BN_mod_inverse_ct(BIGNUM *ret, const BIGNUM *a, const BIGNUM *n, BIGNUM *BN_mod_inverse_nonct(BIGNUM *ret, const BIGNUM *a, const BIGNUM *n, BN_CTX *ctx); int BN_gcd_ct(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); -int BN_gcd_nonct(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); int BN_swap_ct(BN_ULONG swap, BIGNUM *a, BIGNUM *b, size_t nwords); |