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 061544056b..24d91af462 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.20 2023/04/25 17:13:06 tb Exp $ */ 1/* $OpenBSD: bn_local.h,v 1.21 2023/04/25 17:59:41 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 *
@@ -141,13 +141,13 @@ struct bn_mont_ctx_st {
141/* Used for reciprocal division/mod functions 141/* Used for reciprocal division/mod functions
142 * It cannot be shared between threads 142 * It cannot be shared between threads
143 */ 143 */
144struct bn_recp_ctx_st { 144typedef struct bn_recp_ctx_st {
145 BIGNUM N; /* the divisor */ 145 BIGNUM N; /* the divisor */
146 BIGNUM Nr; /* the reciprocal */ 146 BIGNUM Nr; /* the reciprocal */
147 int num_bits; 147 int num_bits;
148 int shift; 148 int shift;
149 int flags; 149 int flags;
150}; 150} BN_RECP_CTX;
151 151
152/* Used for slow "generation" functions. */ 152/* Used for slow "generation" functions. */
153struct bn_gencb_st { 153struct bn_gencb_st {