diff options
author | schwarze <> | 2019-08-26 11:41:31 +0000 |
---|---|---|
committer | schwarze <> | 2019-08-26 11:41:31 +0000 |
commit | c2fb21d5b440bb986631c498969454e1d42d36c4 (patch) | |
tree | 4bed5f2cbc4dfb2a5e49f012066ead98baa798c7 /src | |
parent | 5bb49af83968021539009be436f8ab8309213e7d (diff) | |
download | openbsd-c2fb21d5b440bb986631c498969454e1d42d36c4.tar.gz openbsd-c2fb21d5b440bb986631c498969454e1d42d36c4.tar.bz2 openbsd-c2fb21d5b440bb986631c498969454e1d42d36c4.zip |
document ASN1_put_object(3) and ASN1_put_eoc(3)
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/man/ASN1_TYPE_get.3 | 5 | ||||
-rw-r--r-- | src/lib/libcrypto/man/ASN1_put_object.3 | 181 | ||||
-rw-r--r-- | src/lib/libcrypto/man/Makefile | 3 |
3 files changed, 186 insertions, 3 deletions
diff --git a/src/lib/libcrypto/man/ASN1_TYPE_get.3 b/src/lib/libcrypto/man/ASN1_TYPE_get.3 index 3d6ad0bc63..a31f762335 100644 --- a/src/lib/libcrypto/man/ASN1_TYPE_get.3 +++ b/src/lib/libcrypto/man/ASN1_TYPE_get.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: ASN1_TYPE_get.3,v 1.10 2019/06/10 09:49:48 schwarze Exp $ | 1 | .\" $OpenBSD: ASN1_TYPE_get.3,v 1.11 2019/08/26 11:41:31 schwarze Exp $ |
2 | .\" OpenSSL 99d63d46 Mon Jun 6 00:43:05 2016 -0400 | 2 | .\" OpenSSL 99d63d46 Mon Jun 6 00:43:05 2016 -0400 |
3 | .\" | 3 | .\" |
4 | .\" This file is a derived work. | 4 | .\" This file is a derived work. |
@@ -65,7 +65,7 @@ | |||
65 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 65 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
66 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 66 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
67 | .\" | 67 | .\" |
68 | .Dd $Mdocdate: June 10 2019 $ | 68 | .Dd $Mdocdate: August 26 2019 $ |
69 | .Dt ASN1_TYPE_GET 3 | 69 | .Dt ASN1_TYPE_GET 3 |
70 | .Os | 70 | .Os |
71 | .Sh NAME | 71 | .Sh NAME |
@@ -277,6 +277,7 @@ returns 0 for a match or non-zero for a mismatch. | |||
277 | .Xr ASN1_generate_nconf 3 , | 277 | .Xr ASN1_generate_nconf 3 , |
278 | .Xr ASN1_item_free 3 , | 278 | .Xr ASN1_item_free 3 , |
279 | .Xr ASN1_OBJECT_new 3 , | 279 | .Xr ASN1_OBJECT_new 3 , |
280 | .Xr ASN1_put_object 3 , | ||
280 | .Xr ASN1_STRING_dup 3 , | 281 | .Xr ASN1_STRING_dup 3 , |
281 | .Xr ASN1_STRING_new 3 , | 282 | .Xr ASN1_STRING_new 3 , |
282 | .Xr crypto 3 , | 283 | .Xr crypto 3 , |
diff --git a/src/lib/libcrypto/man/ASN1_put_object.3 b/src/lib/libcrypto/man/ASN1_put_object.3 new file mode 100644 index 0000000000..f1f0021fe5 --- /dev/null +++ b/src/lib/libcrypto/man/ASN1_put_object.3 | |||
@@ -0,0 +1,181 @@ | |||
1 | .\" $OpenBSD: ASN1_put_object.3,v 1.1 2019/08/26 11:41:31 schwarze Exp $ | ||
2 | .\" | ||
3 | .\" Copyright (c) 2019 Ingo Schwarze <schwarze@openbsd.org> | ||
4 | .\" | ||
5 | .\" Permission to use, copy, modify, and distribute this software for any | ||
6 | .\" purpose with or without fee is hereby granted, provided that the above | ||
7 | .\" copyright notice and this permission notice appear in all copies. | ||
8 | .\" | ||
9 | .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
10 | .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
11 | .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
12 | .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
13 | .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
16 | .\" | ||
17 | .Dd $Mdocdate: August 26 2019 $ | ||
18 | .Dt ASN1_PUT_OBJECT 3 | ||
19 | .Os | ||
20 | .Sh NAME | ||
21 | .Nm ASN1_put_object , | ||
22 | .Nm ASN1_put_eoc | ||
23 | .Nd start and end the BER encoding of an arbitrary ASN.1 data element | ||
24 | .Sh SYNOPSIS | ||
25 | .In openssl/asn1.h | ||
26 | .Ft void | ||
27 | .Fo ASN1_put_object | ||
28 | .Fa "unsigned char **ber_out" | ||
29 | .Fa "int constructed" | ||
30 | .Fa "int length" | ||
31 | .Fa "int tag" | ||
32 | .Fa "int class" | ||
33 | .Fc | ||
34 | .Ft int | ||
35 | .Fo ASN1_put_eoc | ||
36 | .Fa "unsigned char **ber_out" | ||
37 | .Fc | ||
38 | .Sh DESCRIPTION | ||
39 | .Fn ASN1_put_object | ||
40 | begins writing the BER encoding of an arbitrary ASN.1 data element | ||
41 | to the buffer | ||
42 | .Pf * ber_out | ||
43 | by writing the identifier and the length bytes. | ||
44 | Making sure that there is sufficient space in the buffer | ||
45 | is the responsibility of the caller. | ||
46 | This function does not write any content bytes | ||
47 | nor any end-of-content bytes. | ||
48 | .Pp | ||
49 | The tag | ||
50 | .Fa class | ||
51 | can be | ||
52 | .Dv V_ASN1_UNIVERSAL , | ||
53 | .Dv V_ASN1_APPLICATION , | ||
54 | .Dv V_ASN1_CONTEXT_SPECIFIC , | ||
55 | or | ||
56 | .Dv V_ASN1_PRIVATE | ||
57 | and is written to the two most significant bits of the first byte written. | ||
58 | .Pp | ||
59 | The | ||
60 | .Fa constructed | ||
61 | argument can have the following values: | ||
62 | .Bl -tag -width 1n -offset 2n -compact | ||
63 | .It 0 | ||
64 | Start a primitive value by setting the third most significant bit | ||
65 | of the first byte written to 0. | ||
66 | Always use the definite form. | ||
67 | .It 1 | ||
68 | Start a constructed value by setting the third most significant bit | ||
69 | of the first byte written to 1, and use the definite form. | ||
70 | .It 2 | ||
71 | Start a constructed value and use the indefinite form, | ||
72 | .El | ||
73 | .Pp | ||
74 | If the | ||
75 | .Fa tag | ||
76 | is less than 0x1f, it is written to the five least significant bits | ||
77 | of the only identifier byte written. | ||
78 | Otherwise, these five bits are all set to 1, and the | ||
79 | .Fa tag | ||
80 | is encoded in one or more following identifier bytes as needed. | ||
81 | .Pp | ||
82 | After completing the identifier byte(s), | ||
83 | when using the definite form, the given | ||
84 | .Fa length | ||
85 | is encoded in one or more bytes as needed. | ||
86 | Otherwise, the special byte 0x80 is written instead and the | ||
87 | .Ar length | ||
88 | argument is ignored. | ||
89 | .Pp | ||
90 | At the end, | ||
91 | .Pf * Fa ber_out | ||
92 | is set to the byte following the last byte written. | ||
93 | The calling code can then start writing content bytes. | ||
94 | .Pp | ||
95 | If the indefinite form was selected, | ||
96 | the calling code is also responsible for calling | ||
97 | .Fn ASN1_put_eoc | ||
98 | which writes an end-of-content marker to | ||
99 | .Pf * Fa ber_out , | ||
100 | consisting of two NUL bytes, and advances | ||
101 | .Pf * Fa ber_out | ||
102 | by two bytes. | ||
103 | .Sh RETURN VALUES | ||
104 | .Fn ASN1_put_eoc | ||
105 | returns the number of bytes written, which is always 2. | ||
106 | .Sh SEE ALSO | ||
107 | .Xr ASN1_item_i2d 3 , | ||
108 | .Xr ASN1_TYPE_get 3 , | ||
109 | .Xr i2d_ASN1_NULL 3 , | ||
110 | .Xr i2d_ASN1_OBJECT 3 , | ||
111 | .Xr i2d_ASN1_OCTET_STRING 3 , | ||
112 | .Xr i2d_ASN1_SEQUENCE_ANY 3 | ||
113 | .Sh HISTORY | ||
114 | .Fn ASN1_put_object | ||
115 | first appeared in SSLeay 0.5.1 and has been available since | ||
116 | .Ox 2.4 . | ||
117 | .Pp | ||
118 | .Fn ASN1_put_eoc | ||
119 | first appeared in OpenSSL 0.9.8 and has been available since | ||
120 | .Ox 4.5 . | ||
121 | .Sh CAVEATS | ||
122 | Neither | ||
123 | .Fn ASN1_put_object | ||
124 | nor | ||
125 | .Fn ASN1_put_eoc | ||
126 | do any sanity checking. | ||
127 | When called in inconsistent ways, invalid content may result in | ||
128 | .Pf * Fa ber_out , | ||
129 | for example | ||
130 | .Bl -dash -compact | ||
131 | .It | ||
132 | a | ||
133 | .Fa tag | ||
134 | number less than 0x1f with a non-universal | ||
135 | .Fa class | ||
136 | .It | ||
137 | a | ||
138 | .Fa tag | ||
139 | number equal to 0x00 or 0x1f | ||
140 | .It | ||
141 | a | ||
142 | .Vt BOOLEAN , | ||
143 | .Vt INTEGER , | ||
144 | .Vt NULL | ||
145 | etc. with the | ||
146 | .Fa constructed | ||
147 | bit set | ||
148 | .It | ||
149 | a | ||
150 | .Vt SEQUENCE | ||
151 | or | ||
152 | .Vt SET | ||
153 | etc. without the | ||
154 | .Fa constructed | ||
155 | bit set | ||
156 | .It | ||
157 | a | ||
158 | .Fa length | ||
159 | that makes no sense for the given | ||
160 | .Fa tag | ||
161 | .It | ||
162 | a | ||
163 | .Fa length | ||
164 | that disagrees with the following data | ||
165 | .It | ||
166 | a | ||
167 | .Vt BOOLEAN , | ||
168 | .Vt INTEGER , | ||
169 | .Vt NULL | ||
170 | etc. in indefinite form | ||
171 | .It | ||
172 | an end-of-content marker even though no indefinite form was started | ||
173 | .It | ||
174 | \&... | ||
175 | .El | ||
176 | .Pp | ||
177 | If the calling code wants to find out how many bytes were written, | ||
178 | it needs to save a copy of the pointer | ||
179 | .Pf * Fa ber_out | ||
180 | before calling | ||
181 | .Fn ASN1_put_object . | ||
diff --git a/src/lib/libcrypto/man/Makefile b/src/lib/libcrypto/man/Makefile index e3e8e710c2..2938a65cda 100644 --- a/src/lib/libcrypto/man/Makefile +++ b/src/lib/libcrypto/man/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.156 2019/08/25 17:08:20 schwarze Exp $ | 1 | # $OpenBSD: Makefile,v 1.157 2019/08/26 11:41:31 schwarze Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> | 3 | .include <bsd.own.mk> |
4 | 4 | ||
@@ -15,6 +15,7 @@ MAN= \ | |||
15 | ASN1_generate_nconf.3 \ | 15 | ASN1_generate_nconf.3 \ |
16 | ASN1_item_d2i.3 \ | 16 | ASN1_item_d2i.3 \ |
17 | ASN1_item_new.3 \ | 17 | ASN1_item_new.3 \ |
18 | ASN1_put_object.3 \ | ||
18 | ASN1_time_parse.3 \ | 19 | ASN1_time_parse.3 \ |
19 | AUTHORITY_KEYID_new.3 \ | 20 | AUTHORITY_KEYID_new.3 \ |
20 | BASIC_CONSTRAINTS_new.3 \ | 21 | BASIC_CONSTRAINTS_new.3 \ |