From: Ulf Möller Date: Sun, 27 Feb 2000 12:30:07 +0000 (+0000) Subject: remove obsolete BN_CTX info X-Git-Tag: OpenSSL_0_9_5a-beta1~179 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=47f87f536a1b290429c900b711b5423facdd8d62;p=openssl remove obsolete BN_CTX info --- 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