From 49d4e7f13703e6c53400ac3ec96f2fe687d3cb85 Mon Sep 17 00:00:00 2001 From: tb <> Date: Tue, 25 Apr 2023 17:59:41 +0000 Subject: BN_RECP_CTX moves to internal --- src/lib/libcrypto/bn/bn_local.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib/libcrypto/bn') 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 @@ -/* $OpenBSD: bn_local.h,v 1.20 2023/04/25 17:13:06 tb Exp $ */ +/* $OpenBSD: bn_local.h,v 1.21 2023/04/25 17:59:41 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -141,13 +141,13 @@ struct bn_mont_ctx_st { /* Used for reciprocal division/mod functions * It cannot be shared between threads */ -struct bn_recp_ctx_st { +typedef struct bn_recp_ctx_st { BIGNUM N; /* the divisor */ BIGNUM Nr; /* the reciprocal */ int num_bits; int shift; int flags; -}; +} BN_RECP_CTX; /* Used for slow "generation" functions. */ struct bn_gencb_st { -- cgit v1.2.3-55-g6feb