From 47f87f536a1b290429c900b711b5423facdd8d62 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Sun, 27 Feb 2000 12:30:07 +0000 Subject: [PATCH] remove obsolete BN_CTX info --- doc/crypto/bn_internal.pod | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/doc/crypto/bn_internal.pod b/doc/crypto/bn_internal.pod index 4263c1897f..139bff7a1a 100644 --- a/doc/crypto/bn_internal.pod +++ b/doc/crypto/bn_internal.pod @@ -92,18 +92,8 @@ Various routines in this library require the use of temporary B variables during their execution. Since dynamic memory allocation to create Bs is rather expensive when used in conjunction with repeated subroutine calls, the B structure is -used. This structure contains B Bs. -B is the maximum number of temporary Bs any -publicly exported function will use. - - #define BN_CTX_NUM 12 - typedef struct bignum_ctx - { - int tos; /* top of stack */ - BIGNUM *bn[BN_CTX_NUM]; /* The variables */ - } BN_CTX; - -B is the index of the first unused B in the B array. +used. This structure contains B Bs, see +L. =head2 Low-level arithmetic operations -- 2.34.1