diff --git a/doc/crypto/bn_internal.pod b/doc/crypto/bn_internal.pod index 4263c1897..139bff7a1 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