projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
094fe66
)
Add an early reference to BN_CTX_new so that the usage of BN_CTX_start
author
Bodo Möller
<bodo@openssl.org>
Tue, 11 Jul 2000 20:35:45 +0000
(20:35 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Tue, 11 Jul 2000 20:35:45 +0000
(20:35 +0000)
is easier to grasp.
doc/crypto/BN_CTX_start.pod
patch
|
blob
|
history
diff --git
a/doc/crypto/BN_CTX_start.pod
b/doc/crypto/BN_CTX_start.pod
index c30552b1220b13c3386253767bd4c3a6b3f930f8..dfcefe1a88767fcb40868e6025eeb311a2ad0822 100644
(file)
--- a/
doc/crypto/BN_CTX_start.pod
+++ b/
doc/crypto/BN_CTX_start.pod
@@
-17,7
+17,8
@@
BN_CTX_start, BN_CTX_get, BN_CTX_end - use temporary BIGNUM variables
=head1 DESCRIPTION
These functions are used to obtain temporary B<BIGNUM> variables from
-a B<BN_CTX> in order to save the overhead of repeatedly creating and
+a B<BN_CTX> (which can been created by using L<BN_CTX_new(3)|BN_CTX_new(3)>)
+in order to save the overhead of repeatedly creating and
freeing B<BIGNUM>s in functions that are called from inside a loop.
A function must call BN_CTX_start() first. Then, BN_CTX_get() may be