diff options
author | tb <> | 2023-04-25 17:21:51 +0000 |
---|---|---|
committer | tb <> | 2023-04-25 17:21:51 +0000 |
commit | ca062fb7469578bc09bd665ac50427d7e8c42adb (patch) | |
tree | 45c4913021f0dba89503518e94197f3e6f1d4d73 /src/lib | |
parent | aa06d7ad77065baccf6e34cfea8c5e8a2debb237 (diff) | |
download | openbsd-ca062fb7469578bc09bd665ac50427d7e8c42adb.tar.gz openbsd-ca062fb7469578bc09bd665ac50427d7e8c42adb.tar.bz2 openbsd-ca062fb7469578bc09bd665ac50427d7e8c42adb.zip |
Remove BN_CTX_init() documentation
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/man/BN_CTX_new.3 | 26 |
1 files changed, 3 insertions, 23 deletions
diff --git a/src/lib/libcrypto/man/BN_CTX_new.3 b/src/lib/libcrypto/man/BN_CTX_new.3 index 01b1e447a7..336b918896 100644 --- a/src/lib/libcrypto/man/BN_CTX_new.3 +++ b/src/lib/libcrypto/man/BN_CTX_new.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: BN_CTX_new.3,v 1.9 2019/06/10 14:58:48 schwarze Exp $ | 1 | .\" $OpenBSD: BN_CTX_new.3,v 1.10 2023/04/25 17:21:51 tb Exp $ |
2 | .\" OpenSSL aafbe1cc Jun 12 23:42:08 2013 +0100 | 2 | .\" OpenSSL aafbe1cc Jun 12 23:42:08 2013 +0100 |
3 | .\" | 3 | .\" |
4 | .\" This file was written by Ulf Moeller <ulf@openssl.org>. | 4 | .\" This file was written by Ulf Moeller <ulf@openssl.org>. |
@@ -48,13 +48,12 @@ | |||
48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
50 | .\" | 50 | .\" |
51 | .Dd $Mdocdate: June 10 2019 $ | 51 | .Dd $Mdocdate: April 25 2023 $ |
52 | .Dt BN_CTX_NEW 3 | 52 | .Dt BN_CTX_NEW 3 |
53 | .Os | 53 | .Os |
54 | .Sh NAME | 54 | .Sh NAME |
55 | .Nm BN_CTX_new , | 55 | .Nm BN_CTX_new , |
56 | .Nm BN_CTX_free , | 56 | .Nm BN_CTX_free |
57 | .Nm BN_CTX_init | ||
58 | .Nd allocate and free BN_CTX structures | 57 | .Nd allocate and free BN_CTX structures |
59 | .Sh SYNOPSIS | 58 | .Sh SYNOPSIS |
60 | .In openssl/bn.h | 59 | .In openssl/bn.h |
@@ -66,13 +65,6 @@ | |||
66 | .Fo BN_CTX_free | 65 | .Fo BN_CTX_free |
67 | .Fa "BN_CTX *c" | 66 | .Fa "BN_CTX *c" |
68 | .Fc | 67 | .Fc |
69 | .Pp | ||
70 | Deprecated: | ||
71 | .Pp | ||
72 | .Ft void | ||
73 | .Fo BN_CTX_init | ||
74 | .Fa "BN_CTX *c" | ||
75 | .Fc | ||
76 | .Sh DESCRIPTION | 68 | .Sh DESCRIPTION |
77 | A | 69 | A |
78 | .Vt BN_CTX | 70 | .Vt BN_CTX |
@@ -111,14 +103,6 @@ If | |||
111 | is a | 103 | is a |
112 | .Dv NULL | 104 | .Dv NULL |
113 | pointer, no action occurs. | 105 | pointer, no action occurs. |
114 | .Pp | ||
115 | .Fn BN_CTX_init | ||
116 | (deprecated) initializes an existing uninitialized | ||
117 | .Vt BN_CTX . | ||
118 | This should not be used for new programs. | ||
119 | Use | ||
120 | .Fn BN_CTX_new | ||
121 | instead. | ||
122 | .Sh RETURN VALUES | 106 | .Sh RETURN VALUES |
123 | .Fn BN_CTX_new | 107 | .Fn BN_CTX_new |
124 | returns a pointer to the | 108 | returns a pointer to the |
@@ -137,7 +121,3 @@ and | |||
137 | .Fn BN_CTX_free | 121 | .Fn BN_CTX_free |
138 | first appeared in SSLeay 0.5.1 and have been available since | 122 | first appeared in SSLeay 0.5.1 and have been available since |
139 | .Ox 2.4 . | 123 | .Ox 2.4 . |
140 | .Pp | ||
141 | .Fn BN_CTX_init | ||
142 | first appeared in SSLeay 0.9.1 and has been available since | ||
143 | .Ox 2.6 . | ||