From eca4feb580cffd6af474f599efe3fe99505a525c Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Tue, 20 Jun 2006 17:32:05 +0000 Subject: Importing OpenSSL 0.9.8b svn path=/openssl/vendor/current/CHANGES; revision=1 --- openssl/vendor/current/doc/crypto/BN_CTX_new.pod | 53 ++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 openssl/vendor/current/doc/crypto/BN_CTX_new.pod (limited to 'openssl/vendor/current/doc/crypto/BN_CTX_new.pod') diff --git a/openssl/vendor/current/doc/crypto/BN_CTX_new.pod b/openssl/vendor/current/doc/crypto/BN_CTX_new.pod new file mode 100644 index 00000000..ad8d07db --- /dev/null +++ b/openssl/vendor/current/doc/crypto/BN_CTX_new.pod @@ -0,0 +1,53 @@ +=pod + +=head1 NAME + +BN_CTX_new, BN_CTX_init, BN_CTX_free - allocate and free BN_CTX structures + +=head1 SYNOPSIS + + #include + + BN_CTX *BN_CTX_new(void); + + void BN_CTX_init(BN_CTX *c); + + void BN_CTX_free(BN_CTX *c); + +=head1 DESCRIPTION + +A B is a structure that holds B temporary variables used by +library functions. Since dynamic memory allocation to create Bs +is rather expensive when used in conjunction with repeated subroutine +calls, the B structure is used. + +BN_CTX_new() allocates and initializes a B +structure. BN_CTX_init() initializes an existing uninitialized +B. + +BN_CTX_free() frees the components of the B, and if it was +created by BN_CTX_new(), also the structure itself. +If L has been used on the B, +L must be called before the B +may be freed by BN_CTX_free(). + + +=head1 RETURN VALUES + +BN_CTX_new() returns a pointer to the B. If the allocation fails, +it returns B and sets an error code that can be obtained by +L. + +BN_CTX_init() and BN_CTX_free() have no return values. + +=head1 SEE ALSO + +L, L, L, +L + +=head1 HISTORY + +BN_CTX_new() and BN_CTX_free() are available in all versions on SSLeay +and OpenSSL. BN_CTX_init() was added in SSLeay 0.9.1b. + +=cut -- cgit v1.2.3