summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bn/bn_local.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/bn/bn_local.h')
-rw-r--r--src/lib/libcrypto/bn/bn_local.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/bn/bn_local.h b/src/lib/libcrypto/bn/bn_local.h
index d9389995f7..fe3abeeb9a 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.47 2025/01/22 10:08:10 tb Exp $ */ 1/* $OpenBSD: bn_local.h,v 1.48 2025/01/22 10:12:01 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 *
@@ -273,8 +273,8 @@ void BN_init(BIGNUM *);
273 273
274BN_RECP_CTX *BN_RECP_CTX_create(const BIGNUM *N); 274BN_RECP_CTX *BN_RECP_CTX_create(const BIGNUM *N);
275void BN_RECP_CTX_free(BN_RECP_CTX *recp); 275void BN_RECP_CTX_free(BN_RECP_CTX *recp);
276int BN_div_recp(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, BN_RECP_CTX *recp, 276int BN_div_reciprocal(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m,
277 BN_CTX *ctx); 277 BN_RECP_CTX *recp, BN_CTX *ctx);
278int BN_mod_mul_reciprocal(BIGNUM *r, const BIGNUM *x, const BIGNUM *y, 278int BN_mod_mul_reciprocal(BIGNUM *r, const BIGNUM *x, const BIGNUM *y,
279 BN_RECP_CTX *recp, BN_CTX *ctx); 279 BN_RECP_CTX *recp, BN_CTX *ctx);
280int BN_mod_sqr_reciprocal(BIGNUM *r, const BIGNUM *x, BN_RECP_CTX *recp, 280int BN_mod_sqr_reciprocal(BIGNUM *r, const BIGNUM *x, BN_RECP_CTX *recp,