summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorschwarze <>2023-04-28 15:04:33 +0000
committerschwarze <>2023-04-28 15:04:33 +0000
commit2fd2074442cd8252cc9aa3efea48bbef55dda31d (patch)
tree9b8534abb1db851e618c7b9765e71bf534313439 /src/lib
parent315cfd46952ee5e87a2f3d64f5688b53318c89f7 (diff)
downloadopenbsd-2fd2074442cd8252cc9aa3efea48bbef55dda31d.tar.gz
openbsd-2fd2074442cd8252cc9aa3efea48bbef55dda31d.tar.bz2
openbsd-2fd2074442cd8252cc9aa3efea48bbef55dda31d.zip
Reorder the text such that every function is discussed only once
instead of discussing some of them at two different places. Also follow a more logical order: initialization first, then reading and writing, then retrieving the digest and reinitialization. Leave context handling and chain duplication at the end because both are rarely needed. While here, also tweak the wording of the shuffled text and add some precision in a few places.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/man/BIO_f_md.387
1 files changed, 41 insertions, 46 deletions
diff --git a/src/lib/libcrypto/man/BIO_f_md.3 b/src/lib/libcrypto/man/BIO_f_md.3
index 091995dc1b..95ffbae783 100644
--- a/src/lib/libcrypto/man/BIO_f_md.3
+++ b/src/lib/libcrypto/man/BIO_f_md.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: BIO_f_md.3,v 1.13 2023/04/11 16:58:43 schwarze Exp $ 1.\" $OpenBSD: BIO_f_md.3,v 1.14 2023/04/28 15:04:33 schwarze Exp $
2.\" full merge up to: OpenSSL 99d63d46 Oct 26 13:56:48 2016 -0400 2.\" full merge up to: OpenSSL 99d63d46 Oct 26 13:56:48 2016 -0400
3.\" 3.\"
4.\" This file was written by Dr. Stephen Henson <steve@openssl.org>. 4.\" This file was written by Dr. Stephen Henson <steve@openssl.org>.
@@ -49,7 +49,7 @@
49.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 49.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50.\" OF THE POSSIBILITY OF SUCH DAMAGE. 50.\" OF THE POSSIBILITY OF SUCH DAMAGE.
51.\" 51.\"
52.Dd $Mdocdate: April 11 2023 $ 52.Dd $Mdocdate: April 28 2023 $
53.Dt BIO_F_MD 3 53.Dt BIO_F_MD 3
54.Os 54.Os
55.Sh NAME 55.Sh NAME
@@ -90,6 +90,22 @@ It is a BIO wrapper for the digest routines
90and 90and
91.Xr EVP_DigestFinal 3 . 91.Xr EVP_DigestFinal 3 .
92.Pp 92.Pp
93.Fn BIO_set_md
94sets the message digest of
95.Fa b
96to
97.Fa md
98and initializes it using
99.Xr EVP_DigestInit_ex 3 .
100Calling this function is required before any data is passed through
101.Fa b .
102.Pp
103.Fn BIO_get_md
104places a pointer to the digest method of
105.Fa b
106into
107.Pf * Fa mdp .
108.Pp
93Any data written or read through a digest BIO using 109Any data written or read through a digest BIO using
94.Xr BIO_read 3 110.Xr BIO_read 3
95and 111and
@@ -104,31 +120,34 @@ finishes the digest calculation and returns the digest value.
104.Xr BIO_puts 3 120.Xr BIO_puts 3
105is 121is
106not supported. 122not supported.
123If an application needs to call
124.Xr BIO_gets 3
125or
126.Xr BIO_puts 3
127through a chain containing digest BIOs,
128this can be done by prepending a buffering BIO.
107.Pp 129.Pp
130After the digest has been retrieved from a digest BIO, call
108.Xr BIO_reset 3 131.Xr BIO_reset 3
109reinitialises a digest BIO. 132to reinitialize it and any BIOs following it in its chain
110.Pp 133before passing any more data through it.
134If no subsequent BIOs require reinitialization,
111.Fn BIO_set_md 135.Fn BIO_set_md
112sets the message digest of BIO 136can be used instead of
113.Fa b 137.Xr BIO_reset 3 .
114to
115.Fa md :
116this must be called to initialize a digest BIO
117before any data is passed through it.
118It is a
119.Xr BIO_ctrl 3
120macro.
121.Pp
122.Fn BIO_get_md
123places a pointer to the digest BIOs digest method in
124.Fa mdp .
125It is a
126.Xr BIO_ctrl 3
127macro.
128.Pp 138.Pp
129.Fn BIO_get_md_ctx 139.Fn BIO_get_md_ctx
130returns the digest BIOs context in 140places a pointer to the digest context of
131.Fa mdcp . 141.Fa b
142into
143.Pf * Fa mdcp
144and marks the BIO as initialized without actually initializing it.
145Unless
146.Fn BIO_set_md
147was already called on
148.Fa b ,
149the caller becomes responsible for initializing the digest context with
150.Xr EVP_DigestInit_ex 3 .
132.Pp 151.Pp
133The context returned by 152The context returned by
134.Fn BIO_get_md_ctx 153.Fn BIO_get_md_ctx
@@ -153,30 +172,6 @@ from the existing BIO object to the new one,
153and the init flag that can be retrieved with 172and the init flag that can be retrieved with
154.Xr BIO_get_init 3 173.Xr BIO_get_init 3
155is set to 1. 174is set to 1.
156.Pp
157After the digest has been retrieved from a digest BIO,
158it must be reinitialized by calling
159.Xr BIO_reset 3
160or
161.Fn BIO_set_md
162before any more data is passed through it.
163.Pp
164If an application needs to call
165.Xr BIO_gets 3
166or
167.Xr BIO_puts 3
168through a chain containing digest BIOs,
169then this can be done by prepending a buffering BIO.
170.Pp
171Calling
172.Fn BIO_get_md_ctx
173will return the context and initialize the
174.Vt BIO
175state.
176This allows applications to initialize the context externally
177if the standard calls such as
178.Fn BIO_set_md
179are not sufficiently flexible.
180.Sh RETURN VALUES 175.Sh RETURN VALUES
181.Fn BIO_f_md 176.Fn BIO_f_md
182returns the digest BIO method. 177returns the digest BIO method.