summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/man
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/man/BIO_dump.338
1 files changed, 3 insertions, 35 deletions
diff --git a/src/lib/libcrypto/man/BIO_dump.3 b/src/lib/libcrypto/man/BIO_dump.3
index 8817f0c4ca..5b8b90b1f0 100644
--- a/src/lib/libcrypto/man/BIO_dump.3
+++ b/src/lib/libcrypto/man/BIO_dump.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: BIO_dump.3,v 1.4 2022/12/20 15:34:03 schwarze Exp $ 1.\" $OpenBSD: BIO_dump.3,v 1.5 2025/05/09 13:24:37 tb Exp $
2.\" 2.\"
3.\" Copyright (c) 2021 Ingo Schwarze <schwarze@openbsd.org> 3.\" Copyright (c) 2021 Ingo Schwarze <schwarze@openbsd.org>
4.\" 4.\"
@@ -14,17 +14,12 @@
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: December 20 2022 $ 17.Dd $Mdocdate: May 9 2025 $
18.Dt BIO_DUMP 3 18.Dt BIO_DUMP 3
19.Os 19.Os
20.Sh NAME 20.Sh NAME
21.Nm BIO_dump , 21.Nm BIO_dump ,
22.Nm BIO_dump_indent , 22.Nm BIO_dump_indent
23.Nm BIO_dump_fp ,
24.Nm BIO_dump_indent_fp
25.\" intentionally undocumented because nothing uses these two functions:
26.\" .Nm BIO_dump_cb
27.\" .Nm BIO_dump_indent_cb
28.Nd hexadecimal printout of arbitrary byte arrays 23.Nd hexadecimal printout of arbitrary byte arrays
29.Sh SYNOPSIS 24.Sh SYNOPSIS
30.In openssl/bio.h 25.In openssl/bio.h
@@ -41,19 +36,6 @@
41.Fa "int len" 36.Fa "int len"
42.Fa "int indent" 37.Fa "int indent"
43.Fc 38.Fc
44.Ft int
45.Fo BIO_dump_fp
46.Fa "FILE *fp"
47.Fa "const char *s"
48.Fa "int len"
49.Fc
50.Ft int
51.Fo BIO_dump_indent_fp
52.Fa "FILE *fp"
53.Fa "const char *s"
54.Fa "int len"
55.Fa "int indent"
56.Fc
57.Sh DESCRIPTION 39.Sh DESCRIPTION
58.Fn BIO_dump 40.Fn BIO_dump
59prints 41prints
@@ -92,14 +74,6 @@ If
92.Fa indent 74.Fa indent
93is 7 or more, the number of data columns is reduced such that the 75is 7 or more, the number of data columns is reduced such that the
94total width of the output does not exceed 79 characters per line. 76total width of the output does not exceed 79 characters per line.
95.Pp
96.Fn BIO_dump_fp
97and
98.Fn BIO_dump_indent_fp
99are similar except that
100.Xr fwrite 3
101is used instead of
102.Xr BIO_write 3 .
103.Sh RETURN VALUES 77.Sh RETURN VALUES
104On success these functions return the total number of bytes written by 78On success these functions return the total number of bytes written by
105.Xr BIO_write 3 79.Xr BIO_write 3
@@ -120,9 +94,3 @@ first appeared in SSLeay 0.6.5 and has been available since
120.Fn BIO_dump_indent 94.Fn BIO_dump_indent
121first appeared in OpenSSL 0.9.6 and has been available since 95first appeared in OpenSSL 0.9.6 and has been available since
122.Ox 2.9 . 96.Ox 2.9 .
123.Pp
124.Fn BIO_dump_fp
125and
126.Fn BIO_dump_indent_fp
127first appeared in OpenSSL 0.9.8 and have been available since
128.Ox 4.5 .