diff options
| author | tb <> | 2025-05-09 13:24:37 +0000 |
|---|---|---|
| committer | tb <> | 2025-05-09 13:24:37 +0000 |
| commit | 3e9edd0b4fd31c7e46865118d09a568bb5d182ad (patch) | |
| tree | 898bc1c31c80e09dc28de210922300560e23bdf6 /src/lib | |
| parent | 31f8ff69a39e94b6e271f5ddcc81c8473dd69b4a (diff) | |
| download | openbsd-3e9edd0b4fd31c7e46865118d09a568bb5d182ad.tar.gz openbsd-3e9edd0b4fd31c7e46865118d09a568bb5d182ad.tar.bz2 openbsd-3e9edd0b4fd31c7e46865118d09a568bb5d182ad.zip | |
Garbage collect docs of BIO_dump{,_indent}_{cb,fp}()
The _cb() variants were only documented as intentionally undocumented.
Be that as it may, they left the building more than a year ago.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/libcrypto/man/BIO_dump.3 | 38 |
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 |
| 59 | prints | 41 | prints |
| @@ -92,14 +74,6 @@ If | |||
| 92 | .Fa indent | 74 | .Fa indent |
| 93 | is 7 or more, the number of data columns is reduced such that the | 75 | is 7 or more, the number of data columns is reduced such that the |
| 94 | total width of the output does not exceed 79 characters per line. | 76 | total width of the output does not exceed 79 characters per line. |
| 95 | .Pp | ||
| 96 | .Fn BIO_dump_fp | ||
| 97 | and | ||
| 98 | .Fn BIO_dump_indent_fp | ||
| 99 | are similar except that | ||
| 100 | .Xr fwrite 3 | ||
| 101 | is used instead of | ||
| 102 | .Xr BIO_write 3 . | ||
| 103 | .Sh RETURN VALUES | 77 | .Sh RETURN VALUES |
| 104 | On success these functions return the total number of bytes written by | 78 | On 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 |
| 121 | first appeared in OpenSSL 0.9.6 and has been available since | 95 | first 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 | ||
| 125 | and | ||
| 126 | .Fn BIO_dump_indent_fp | ||
| 127 | first appeared in OpenSSL 0.9.8 and have been available since | ||
| 128 | .Ox 4.5 . | ||
