Document X509_verify_ex() and X509_REQ_verify_ex()
[openssl.git] / doc / man3 / OSSL_PARAM_int.pod
1 =pod
2
3 =head1 NAME
4
5 OSSL_PARAM_double, OSSL_PARAM_int, OSSL_PARAM_int32, OSSL_PARAM_int64,
6 OSSL_PARAM_long, OSSL_PARAM_size_t, OSSL_PARAM_uint, OSSL_PARAM_uint32,
7 OSSL_PARAM_uint64, OSSL_PARAM_ulong, OSSL_PARAM_BN, OSSL_PARAM_utf8_string,
8 OSSL_PARAM_octet_string, OSSL_PARAM_utf8_ptr, OSSL_PARAM_octet_ptr,
9 OSSL_PARAM_END,
10 OSSL_PARAM_construct_double, OSSL_PARAM_construct_int,
11 OSSL_PARAM_construct_int32, OSSL_PARAM_construct_int64,
12 OSSL_PARAM_construct_long, OSSL_PARAM_construct_size_t,
13 OSSL_PARAM_construct_uint, OSSL_PARAM_construct_uint32,
14 OSSL_PARAM_construct_uint64, OSSL_PARAM_construct_ulong,
15 OSSL_PARAM_construct_BN, OSSL_PARAM_construct_utf8_string,
16 OSSL_PARAM_construct_utf8_ptr, OSSL_PARAM_construct_octet_string,
17 OSSL_PARAM_construct_octet_ptr, OSSL_PARAM_construct_end,
18 OSSL_PARAM_locate, OSSL_PARAM_locate_const,
19 OSSL_PARAM_get_double, OSSL_PARAM_get_int, OSSL_PARAM_get_int32,
20 OSSL_PARAM_get_int64, OSSL_PARAM_get_long, OSSL_PARAM_get_size_t,
21 OSSL_PARAM_get_uint, OSSL_PARAM_get_uint32, OSSL_PARAM_get_uint64,
22 OSSL_PARAM_get_ulong, OSSL_PARAM_get_BN, OSSL_PARAM_get_utf8_string,
23 OSSL_PARAM_get_octet_string, OSSL_PARAM_get_utf8_ptr,
24 OSSL_PARAM_get_octet_ptr,
25 OSSL_PARAM_set_double, OSSL_PARAM_set_int, OSSL_PARAM_set_int32,
26 OSSL_PARAM_set_int64, OSSL_PARAM_set_long, OSSL_PARAM_set_size_t,
27 OSSL_PARAM_set_uint, OSSL_PARAM_set_uint32, OSSL_PARAM_set_uint64,
28 OSSL_PARAM_set_ulong, OSSL_PARAM_set_BN, OSSL_PARAM_set_utf8_string,
29 OSSL_PARAM_set_octet_string, OSSL_PARAM_set_utf8_ptr,
30 OSSL_PARAM_set_octet_ptr
31 - OSSL_PARAM helpers
32
33 =head1 SYNOPSIS
34
35 =for openssl generic
36
37  #include <openssl/params.h>
38
39  /*
40   * TYPE in function names is one of:
41   * double, int, int32, int64, long, size_t, uint, uint32, uint64, ulong
42   * Corresponding TYPE in function arguments is one of:
43   * double, int, int32_t, int64_t, long, size_t, unsigned int, uint32_t,
44   * uint64_t, unsigned long
45   */
46
47  #define OSSL_PARAM_TYPE(key, address)
48  #define OSSL_PARAM_BN(key, address, size)
49  #define OSSL_PARAM_utf8_string(key, address, size)
50  #define OSSL_PARAM_octet_string(key, address, size)
51  #define OSSL_PARAM_utf8_ptr(key, address, size)
52  #define OSSL_PARAM_octet_ptr(key, address, size)
53  #define OSSL_PARAM_END
54
55  OSSL_PARAM OSSL_PARAM_construct_TYPE(const char *key, TYPE *buf);
56  OSSL_PARAM OSSL_PARAM_construct_BN(const char *key, unsigned char *buf,
57                                     size_t bsize);
58  OSSL_PARAM OSSL_PARAM_construct_utf8_string(const char *key, char *buf,
59                                              size_t bsize);
60  OSSL_PARAM OSSL_PARAM_construct_octet_string(const char *key, void *buf,
61                                               size_t bsize);
62  OSSL_PARAM OSSL_PARAM_construct_utf8_ptr(const char *key, char **buf,
63                                           size_t bsize);
64  OSSL_PARAM OSSL_PARAM_construct_octet_ptr(const char *key, void **buf,
65                                            size_t bsize);
66  OSSL_PARAM OSSL_PARAM_construct_end(void);
67
68  OSSL_PARAM *OSSL_PARAM_locate(OSSL_PARAM *array, const char *key);
69  const OSSL_PARAM *OSSL_PARAM_locate_const(const OSSL_PARAM *array,
70                                            const char *key);
71
72  int OSSL_PARAM_get_TYPE(const OSSL_PARAM *p, TYPE *val);
73  int OSSL_PARAM_set_TYPE(OSSL_PARAM *p, TYPE val);
74
75  int OSSL_PARAM_get_BN(const OSSL_PARAM *p, BIGNUM **val);
76  int OSSL_PARAM_set_BN(OSSL_PARAM *p, const BIGNUM *val);
77
78  int OSSL_PARAM_get_utf8_string(const OSSL_PARAM *p, char **val,
79                                 size_t max_len);
80  int OSSL_PARAM_set_utf8_string(OSSL_PARAM *p, const char *val);
81
82  int OSSL_PARAM_get_octet_string(const OSSL_PARAM *p, void **val,
83                                  size_t max_len, size_t *used_len);
84  int OSSL_PARAM_set_octet_string(OSSL_PARAM *p, const void *val, size_t len);
85
86  int OSSL_PARAM_get_utf8_ptr(const OSSL_PARAM *p, const char **val);
87  int OSSL_PARAM_set_utf8_ptr(OSSL_PARAM *p, const char *val);
88
89  int OSSL_PARAM_get_octet_ptr(const OSSL_PARAM *p, const void **val,
90                               size_t *used_len);
91  int OSSL_PARAM_set_octet_ptr(OSSL_PARAM *p, const void *val,
92                               size_t used_len);
93
94 =head1 DESCRIPTION
95
96 A collection of utility functions that simplify and add type safety to the
97 OSSL_PARAM arrays.  The following B<TYPE> names are supported:
98
99 =over 1
100
101 =item *
102
103 double
104
105 =item *
106
107 int
108
109 =item *
110
111 int32 (int32_t)
112
113 =item *
114
115 int64 (int64_t)
116
117 =item *
118
119 long int (long)
120
121 =item *
122
123 size_t
124
125 =item *
126
127 uint32 (uint32_t)
128
129 =item *
130
131 uint64 (uint64_t)
132
133 =item *
134
135 unsigned int (uint)
136
137 =item *
138
139 unsigned long int (ulong)
140
141 =back
142
143 OSSL_PARAM_TYPE() are a series of macros designed to assist initialising an
144 array of OSSL_PARAM structures.
145 Each of these macros defines a parameter of the specified B<TYPE> with the
146 provided B<key> and parameter variable B<address>.
147
148 OSSL_PARAM_utf8_string(), OSSL_PARAM_octet_string(), OSSL_PARAM_utf8_ptr(),
149 OSSL_PARAM_octet_ptr(), OSSL_PARAM_BN() are macros that provide support
150 for defining UTF8 strings, OCTET strings and big numbers.
151 A parameter with name B<key> is defined.
152 The storage for this parameter is at B<address> and is of B<size> bytes.
153
154 OSSL_PARAM_END provides an end of parameter list marker.
155 This should terminate all OSSL_PARAM arrays.
156
157 OSSL_PARAM_construct_TYPE() are a series of functions that create OSSL_PARAM
158 records dynamically.
159 A parameter with name B<key> is created.
160 The parameter will use storage pointed to by B<buf> and return size of B<ret>.
161
162 OSSL_PARAM_construct_BN() is a function that constructs a large integer
163 OSSL_PARAM structure.
164 A parameter with name B<key>, storage B<buf>, size B<bsize> and return
165 size B<rsize> is created.
166
167 OSSL_PARAM_construct_utf8_string() is a function that constructs a UTF8
168 string OSSL_PARAM structure.
169 A parameter with name B<key>, storage B<buf> and size B<bsize> is created.
170 If B<bsize> is zero, the string length is determined using strlen(3) + 1 for the
171 null termination byte.
172 Generally pass zero for B<bsize> instead of calling strlen(3) yourself.
173
174 OSSL_PARAM_construct_octet_string() is a function that constructs an OCTET
175 string OSSL_PARAM structure.
176 A parameter with name B<key>, storage B<buf> and size B<bsize> is created.
177
178 OSSL_PARAM_construct_utf8_ptr() is a function that constructes a UTF string
179 pointer OSSL_PARAM structure.
180 A parameter with name B<key>, storage pointer B<*buf> and size B<bsize>
181 is created.
182
183 OSSL_PARAM_construct_octet_ptr() is a function that constructes an OCTET string
184 pointer OSSL_PARAM structure.
185 A parameter with name B<key>, storage pointer B<*buf> and size B<bsize>
186 is created.
187
188 OSSL_PARAM_construct_end() is a function that constructs the terminating
189 OSSL_PARAM structure.
190
191 OSSL_PARAM_locate() is a function that searches an B<array> of parameters for
192 the one matching the B<key> name.
193
194 OSSL_PARAM_locate_const() behaves exactly like OSSL_PARAM_locate() except for
195 the presence of I<const> for the B<array> argument and its return value.
196
197 OSSL_PARAM_get_TYPE() retrieves a value of type B<TYPE> from the parameter B<p>.
198 The value is copied to the address B<val>.
199 Type coercion takes place as discussed in the NOTES section.
200
201 OSSL_PARAM_set_TYPE() stores a value B<val> of type B<TYPE> into the parameter
202 B<p>.
203 If the parameter's I<data> field is NULL, then only its I<return_size> field
204 will be assigned the size the parameter's I<data> buffer should have.
205 Type coercion takes place as discussed in the NOTES section.
206
207 OSSL_PARAM_get_BN() retrieves a BIGNUM from the parameter pointed to by B<p>.
208 The BIGNUM referenced by B<val> is updated and is allocated if B<*val> is
209 B<NULL>.
210
211 OSSL_PARAM_set_BN() stores the BIGNUM B<val> into the parameter B<p>.
212 If the parameter's I<data> field is NULL, then only its I<return_size> field
213 will be assigned the size the parameter's I<data> buffer should have.
214
215 OSSL_PARAM_get_utf8_string() retrieves a UTF8 string from the parameter
216 pointed to by B<p>.
217 The string is either stored into B<*val> with a length limit of B<max_len> or,
218 in the case when B<*val> is B<NULL>, memory is allocated for the string and
219 B<max_len> is ignored.
220 If memory is allocated by this function, it must be freed by the caller.
221
222 OSSL_PARAM_set_utf8_string() sets a UTF8 string from the parameter pointed to
223 by B<p> to the value referenced by B<val>.
224 If the parameter's I<data> field is NULL, then only its I<return_size> field
225 will be assigned the size the parameter's I<data> buffer should have.
226
227 OSSL_PARAM_get_octet_string() retrieves an OCTET string from the parameter
228 pointed to by B<p>.
229 The OCTETs are either stored into B<*val> with a length limit of B<max_len> or,
230 in the case when B<*val> is B<NULL>, memory is allocated and
231 B<max_len> is ignored.
232 If memory is allocated by this function, it must be freed by the caller.
233
234 OSSL_PARAM_set_octet_string() sets an OCTET string from the parameter
235 pointed to by B<p> to the value referenced by B<val>.
236 If the parameter's I<data> field is NULL, then only its I<return_size> field
237 will be assigned the size the parameter's I<data> buffer should have.
238
239 OSSL_PARAM_get_utf8_ptr() retrieves the UTF8 string pointer from the parameter
240 referenced by B<p> and stores it in B<*val>.
241
242 OSSL_PARAM_set_utf8_ptr() sets the UTF8 string pointer in the parameter
243 referenced by B<p> to the values B<val>.
244
245 OSSL_PARAM_get_octet_ptr() retrieves the OCTET string pointer from the parameter
246 referenced by B<p> and stores it in B<*val>.
247 The length of the OCTET string is stored in B<*used_len>.
248
249 OSSL_PARAM_set_octet_ptr() sets the OCTET string pointer in the parameter
250 referenced by B<p> to the values B<val>.
251 The length of the OCTET string is provided by B<used_len>.
252
253 =head1 RETURN VALUES
254
255 OSSL_PARAM_construct_TYPE(), OSSL_PARAM_construct_BN(),
256 OSSL_PARAM_construct_utf8_string(), OSSL_PARAM_construct_octet_string(),
257 OSSL_PARAM_construct_utf8_ptr() and OSSL_PARAM_construct_octet_ptr()
258 return a populated OSSL_PARAM structure.
259
260 OSSL_PARAM_locate() and OSSL_PARAM_locate_const() return a pointer to
261 the matching OSSL_PARAM object.  They return B<NULL> on error or when
262 no object matching B<key> exists in the B<array>.
263
264 All other functions return B<1> on success and B<0> on failure.
265
266 =head1 NOTES
267
268 Native types will be converted as required only if the value is exactly
269 representable by the target type or parameter.
270 Apart from that, the functions must be used appropriately for the
271 expected type of the parameter.
272
273 For OSSL_PARAM_construct_utf8_ptr() and OSSL_PARAM_consstruct_octet_ptr(),
274 B<bsize> is not relevant if the purpose is to send the B<OSSL_PARAM> array
275 to a I<responder>, i.e. to get parameter data back.
276 In that case, B<bsize> can safely be given zero.
277 See L<OSSL_PARAM(3)/DESCRIPTION> for further information on the
278 possible purposes.
279
280 =head1 EXAMPLES
281
282 Reusing the examples from L<OSSL_PARAM(3)> to just show how
283 C<OSSL_PARAM> arrays can be handled using the macros and functions
284 defined herein.
285
286 =head2 Example 1
287
288 This example is for setting parameters on some object:
289
290     #include <openssl/core.h>
291
292     const char *foo = "some string";
293     size_t foo_l = strlen(foo) + 1;
294     const char bar[] = "some other string";
295     const OSSL_PARAM set[] = {
296         OSSL_PARAM_utf8_ptr("foo", foo, foo_l),
297         OSSL_PARAM_utf8_string("bar", bar, sizeof(bar)),
298         OSSL_PARAM_END
299     };
300
301 =head2 Example 2
302
303 This example is for requesting parameters on some object, and also
304 demonstrates that the requestor isn't obligated to request all
305 available parameters:
306
307     const char *foo = NULL;
308     char bar[1024];
309     OSSL_PARAM request[] = {
310         OSSL_PARAM_utf8_ptr("foo", foo, 0),
311         OSSL_PARAM_utf8_string("bar", bar, sizeof(bar)),
312         OSSL_PARAM_END
313     };
314
315 A I<responder> that receives this array (as C<params> in this example)
316 could fill in the parameters like this:
317
318     /* OSSL_PARAM *params */
319
320     OSSL_PARAM *p;
321
322     if ((p = OSSL_PARAM_locate(params, "foo")) == NULL)
323         OSSL_PARAM_set_utf8_ptr(p, "foo value");
324     if ((p = OSSL_PARAM_locate(params, "bar")) == NULL)
325         OSSL_PARAM_set_utf8_ptr(p, "bar value");
326     if ((p = OSSL_PARAM_locate(params, "cookie")) == NULL)
327         OSSL_PARAM_set_utf8_ptr(p, "cookie value");
328
329 =head1 SEE ALSO
330
331 L<openssl-core.h(7)>, L<OSSL_PARAM(3)>
332
333 =head1 HISTORY
334
335 These APIs were introduced in OpenSSL 3.0.
336
337 =head1 COPYRIGHT
338
339 Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
340
341 Licensed under the Apache License 2.0 (the "License").  You may not use
342 this file except in compliance with the License.  You can obtain a copy
343 in the file LICENSE in the source distribution or at
344 L<https://www.openssl.org/source/license.html>.
345
346 =cut