summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-03-19 17:48:57 +0000
committertb <>2024-03-19 17:48:57 +0000
commit4734800ad5efc622926cf983bd3b523bf72bc1b2 (patch)
tree9ee8171dc3fe182aaeb0966321a4e62f333d2134 /src
parente84d62c9cd94f76c1c29728f60af283a0c3cb223 (diff)
downloadopenbsd-4734800ad5efc622926cf983bd3b523bf72bc1b2.tar.gz
openbsd-4734800ad5efc622926cf983bd3b523bf72bc1b2.tar.bz2
openbsd-4734800ad5efc622926cf983bd3b523bf72bc1b2.zip
Remove OPENSSL/CRYPTO_realloc documentation
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/man/OPENSSL_malloc.325
1 files changed, 4 insertions, 21 deletions
diff --git a/src/lib/libcrypto/man/OPENSSL_malloc.3 b/src/lib/libcrypto/man/OPENSSL_malloc.3
index 508867132c..7779a3ec0e 100644
--- a/src/lib/libcrypto/man/OPENSSL_malloc.3
+++ b/src/lib/libcrypto/man/OPENSSL_malloc.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: OPENSSL_malloc.3,v 1.11 2023/11/16 20:27:43 schwarze Exp $ 1.\" $OpenBSD: OPENSSL_malloc.3,v 1.12 2024/03/19 17:48:57 tb Exp $
2.\" 2.\"
3.\" Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org> 3.\" Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org>
4.\" 4.\"
@@ -14,16 +14,14 @@
14.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16.\" 16.\"
17.Dd $Mdocdate: November 16 2023 $ 17.Dd $Mdocdate: March 19 2024 $
18.Dt OPENSSL_MALLOC 3 18.Dt OPENSSL_MALLOC 3
19.Os 19.Os
20.Sh NAME 20.Sh NAME
21.Nm OPENSSL_malloc , 21.Nm OPENSSL_malloc ,
22.Nm OPENSSL_realloc ,
23.Nm OPENSSL_free , 22.Nm OPENSSL_free ,
24.Nm OPENSSL_strdup , 23.Nm OPENSSL_strdup ,
25.Nm CRYPTO_malloc , 24.Nm CRYPTO_malloc ,
26.Nm CRYPTO_realloc ,
27.Nm CRYPTO_free , 25.Nm CRYPTO_free ,
28.Nm CRYPTO_strdup 26.Nm CRYPTO_strdup
29.Nd legacy OpenSSL memory allocation wrappers 27.Nd legacy OpenSSL memory allocation wrappers
@@ -33,11 +31,6 @@
33.Fo OPENSSL_malloc 31.Fo OPENSSL_malloc
34.Fa "size_t num" 32.Fa "size_t num"
35.Fc 33.Fc
36.Ft void *
37.Fo OPENSSL_realloc
38.Fa "void *addr"
39.Fa "size_t num"
40.Fc
41.Ft void 34.Ft void
42.Fo OPENSSL_free 35.Fo OPENSSL_free
43.Fa "void *addr" 36.Fa "void *addr"
@@ -52,13 +45,6 @@
52.Fa "const char *file" 45.Fa "const char *file"
53.Fa "int line" 46.Fa "int line"
54.Fc 47.Fc
55.Ft void *
56.Fo CRYPTO_realloc
57.Fa "void *p"
58.Fa "size_t num"
59.Fa "const char *file"
60.Fa "int line"
61.Fc
62.Ft void 48.Ft void
63.Fo CRYPTO_free 49.Fo CRYPTO_free
64.Fa "void *str" 50.Fa "void *str"
@@ -78,7 +64,6 @@ They are provided purely for compatibility with legacy application code.
78All 8 of these functions are wrappers around the corresponding 64All 8 of these functions are wrappers around the corresponding
79standard 65standard
80.Xr malloc 3 , 66.Xr malloc 3 ,
81.Xr realloc 3 ,
82.Xr free 3 , 67.Xr free 3 ,
83and 68and
84.Xr strdup 3 69.Xr strdup 3
@@ -93,15 +78,13 @@ standard functions.
93.Sh SEE ALSO 78.Sh SEE ALSO
94.Xr crypto 3 79.Xr crypto 3
95.Sh HISTORY 80.Sh HISTORY
96.Fn CRYPTO_malloc , 81.Fn CRYPTO_malloc
97.Fn CRYPTO_realloc ,
98and 82and
99.Fn CRYPTO_free 83.Fn CRYPTO_free
100first appeared in SSLeay 0.6.4 and have been available since 84first appeared in SSLeay 0.6.4 and have been available since
101.Ox 2.4 . 85.Ox 2.4 .
102.Pp 86.Pp
103.Fn OPENSSL_malloc , 87.Fn OPENSSL_malloc
104.Fn OPENSSL_realloc ,
105and 88and
106.Fn OPENSSL_free 89.Fn OPENSSL_free
107first appeared in OpenSSL 0.9.6 and have been available since 90first appeared in OpenSSL 0.9.6 and have been available since