Fix function name typo in MAC documentation.
[openssl.git] / doc / man3 / EVP_MAC.pod
1 =pod
2
3 =head1 NAME
4
5 EVP_MAC, EVP_MAC_fetch, EVP_MAC_up_ref, EVP_MAC_free, EVP_MAC_name,
6 EVP_MAC_provider, EVP_MAC_get_params, EVP_MAC_gettable_params,
7 EVP_MAC_CTX, EVP_MAC_CTX_new, EVP_MAC_CTX_free, EVP_MAC_CTX_dup,
8 EVP_MAC_CTX_mac, EVP_MAC_CTX_get_params, EVP_MAC_CTX_set_params,
9 EVP_MAC_size, EVP_MAC_init, EVP_MAC_update, EVP_MAC_final,
10 EVP_MAC_CTX_gettable_params, EVP_MAC_CTX_settable_params,
11 EVP_MAC_do_all_ex - EVP MAC routines
12
13 =head1 SYNOPSIS
14
15  #include <openssl/evp.h>
16
17  typedef struct evp_mac_st EVP_MAC;
18  typedef struct evp_mac_ctx_st EVP_MAC_CTX;
19
20  EVP_MAC *EVP_MAC_fetch(OPENSSL_CTX *libctx, const char *algorithm,
21                         const char *properties);
22  int EVP_MAC_up_ref(EVP_MAC *mac);
23  void EVP_MAC_free(EVP_MAC *mac);
24  const char *EVP_MAC_name(const EVP_MAC *mac);
25  const OSSL_PROVIDER *EVP_MAC_provider(const EVP_MAC *mac);
26  int EVP_MAC_get_params(EVP_MAC *mac, OSSL_PARAM params[]);
27
28  EVP_MAC_CTX *EVP_MAC_CTX_new(EVP_MAC *mac);
29  void EVP_MAC_CTX_free(EVP_MAC_CTX *ctx);
30  EVP_MAC_CTX *EVP_MAC_CTX_dup(const EVP_MAC_CTX *src);
31  EVP_MAC *EVP_MAC_CTX_mac(EVP_MAC_CTX *ctx);
32  int EVP_MAC_CTX_get_params(EVP_MAC_CTX *ctx, OSSL_PARAM params[]);
33  int EVP_MAC_CTX_set_params(EVP_MAC_CTX *ctx, const OSSL_PARAM params[]);
34
35  size_t EVP_MAC_size(EVP_MAC_CTX *ctx);
36  int EVP_MAC_init(EVP_MAC_CTX *ctx);
37  int EVP_MAC_update(EVP_MAC_CTX *ctx, const unsigned char *data, size_t datalen);
38  int EVP_MAC_final(EVP_MAC_CTX *ctx,
39                    unsigned char *out, size_t *outl, size_t outsize);
40
41  const OSSL_PARAM *EVP_MAC_gettable_params(const EVP_MAC *mac);
42  const OSSL_PARAM *EVP_MAC_CTX_gettable_params(const EVP_MAC *mac);
43  const OSSL_PARAM *EVP_MAC_CTX_settable_params(const EVP_MAC *mac);
44
45  void EVP_MAC_do_all_ex(OPENSSL_CTX *libctx,
46                         void (*fn)(EVP_MAC *mac, void *arg),
47                         void *arg);
48
49 =head1 DESCRIPTION
50
51 These types and functions help the application to calculate MACs of
52 different types and with different underlying algorithms if there are
53 any.
54
55 MACs are a bit complex insofar that some of them use other algorithms
56 for actual computation.  HMAC uses a digest, and CMAC uses a cipher.
57 Therefore, there are sometimes two contexts to keep track of, one for
58 the MAC algorithm itself and one for the underlying computation
59 algorithm if there is one.
60
61 To make things less ambiguous, this manual talks about a "context" or
62 "MAC context", which is to denote the MAC level context, and about a
63 "underlying context", or "computation context", which is to denote the
64 context for the underlying computation algorithm if there is one.
65
66 =head2 Types
67
68 B<EVP_MAC> is a type that holds the implementation of a MAC.
69
70 B<EVP_MAC_CTX> is a context type that holds internal MAC information
71 as well as a reference to a computation context, for those MACs that
72 rely on an underlying computation algorithm.
73
74 =head2 Algorithm implementation fetching
75
76 EVP_MAC_fetch() fetches an implementation of a MAC I<algorithm>, given
77 a library context I<libctx> and a set of I<properties>.
78 See L<provider(7)/Fetching algorithms> for further information.
79
80 The returned value must eventually be freed with
81 L<EVP_MAC_free(3)>.
82
83 EVP_MAC_up_ref() increments the reference count of an already fetched
84 MAC.
85
86 EVP_MAC_free() frees a fetched algorithm.
87 NULL is a valid parameter, for which this function is a no-op.
88
89 =head2 Context manipulation functions
90
91 EVP_MAC_CTX_new() creates a new context for the MAC type I<mac>.
92 The created context can then be used with most other functions
93 described here.
94
95 EVP_MAC_CTX_free() frees the contents of the context, including an
96 underlying context if there is one, as well as the context itself.
97 NULL is a valid parameter, for which this function is a no-op.
98
99 EVP_MAC_CTX_dup() duplicates the I<src> context and returns a newly allocated
100 context.
101
102 EVP_MAC_CTX_mac() returns the B<EVP_MAC> associated with the context
103 I<ctx>.
104
105 =head2 Computing functions
106
107 EVP_MAC_init() sets up the underlying context with information given
108 through diverse controls.
109 This should be called before calling EVP_MAC_update() and
110 EVP_MAC_final().
111
112 EVP_MAC_update() adds I<datalen> bytes from I<data> to the MAC input.
113
114 EVP_MAC_final() does the final computation and stores the result in
115 the memory pointed at by I<out> of size I<outsize>, and sets the number
116 of bytes written in I<*outl> at.
117 If I<out> is B<NULL> or I<outsize> is too small, then no computation
118 is made.
119 To figure out what the output length will be and allocate space for it
120 dynamically, simply call with I<out> being B<NULL> and I<outl>
121 pointing at a valid location, then allocate space and make a second
122 call with I<out> pointing at the allocated space.
123
124 EVP_MAC_get_params() retrieves details about the implementation
125 I<mac>.
126 The set of parameters given with I<params> determine exactly what
127 parameters should be retrieved.
128 Note that a parameter that is unknown in the underlying context is
129 simply ignored.
130
131 EVP_MAC_CTX_get_params() retrieves chosen parameters, given the
132 context I<ctx> and its underlying context.
133 The set of parameters given with I<params> determine exactly what
134 parameters should be retrieved.
135 Note that a parameter that is unknown in the underlying context is
136 simply ignored.
137
138 EVP_MAC_CTX_set_params() passes chosen parameters to the underlying
139 context, given a context I<ctx>.
140 The set of parameters given with I<params> determine exactly what
141 parameters are passed down.
142 Note that a parameter that is unknown in the underlying context is
143 simply ignored.
144 Also, what happens when a needed parameter isn't passed down is
145 defined by the implementation.
146
147 EVP_MAC_gettable_params(), EVP_MAC_CTX_gettable_params() and
148 EVP_MAC_CTX_settable_params() get a constant B<OSSL_PARAM> array that
149 decribes the retrievable and settable parameters, i.e. parameters that
150 can be used with EVP_MAC_get_params(), EVP_MAC_CTX_get_params()
151 and EVP_MAC_CTX_set_params(), respectively.
152 See L<OSSL_PARAM(3)> for the use of B<OSSL_PARAM> as parameter descriptor.
153
154 =head2 Information functions
155
156 EVP_MAC_size() returns the MAC output size for the given context.
157
158 EVP_MAC_name() returns the name of the given MAC implementation.
159
160 EVP_MAC_provider() returns the provider that holds the implementation
161 of the given I<mac>.
162
163 EVP_MAC_do_all_ex() traverses all MAC implemented by all activated
164 providers in the given library context I<libctx>, and for each of the
165 implementations, calls the given function I<fn> with the implementation method
166 and the given I<arg> as argument.
167
168 =head1 PARAMETER NAMES
169
170 The standard parameter names are:
171
172 =over 4
173
174 =item OSSL_MAC_PARAM_KEY ("key") <octet string>
175
176 Its value is the MAC key as an array of bytes.
177
178 For MACs that use an underlying computation algorithm, the algorithm
179 must be set first, see parameter names "algorithm" below.
180
181 =item OSSL_MAC_PARAM_IV ("iv") <octet string>
182
183 Some MAC implementations require an IV, this parameter sets the IV.
184
185 =item OSSL_MAC_PARAM_CUSTOM ("custom") <octet string>
186
187 Some MAC implementations (KMAC, BLAKE2) accept a Customization String,
188 this parameter sets the Customization String. The default value is the
189 empty string.
190
191 =item OSSL_MAC_PARAM_SALT ("salt") <octet string>
192
193 This option is used by BLAKE2 MAC.
194
195 =item OSSL_MAC_PARAM_XOF ("xof") <int>
196
197 It's a simple flag, the value 0 or 1 are expected.
198
199 This option is used by KMAC.
200
201 =item OSSL_MAC_PARAM_FLAGS ("flags") <int>
202
203 These will set the MAC flags to the given numbers.
204 Some MACs do not support this option.
205
206 =item OSSL_MAC_PARAM_ENGINE ("engine") <utf8string>
207
208 =item OSSL_MAC_PARAM_PROPERTIES ("properties") <utf8string>
209
210 =item OSSL_MAC_PARAM_DIGEST ("digest") <utf8string>
211
212 =item OSSL_MAC_PARAM_CIPHER ("cipher") <utf8string>
213
214 For MAC implementations that use an underlying computation cipher or
215 digest, these parameters set what the algorithm should be, and the
216 engine that implements the algorithm or the properties to fetch it
217 by if needed.
218
219 The value is always the name of the intended engine, algorithm,
220 or the properties.
221
222 Note that not all algorithms may support all digests.
223 HMAC does not support variable output length digests such as SHAKE128
224 or SHAKE256.
225
226 =item OSSL_MAC_PARAM_SIZE <unsigned int>
227
228 For MAC implementations that support it, set the output size that
229 EVP_MAC_final() should produce.
230 The allowed sizes vary between MAC implementations.
231
232 =back
233
234 All these parameters should be used before the calls to any of
235 EVP_MAC_init(), EVP_MAC_update() and EVP_MAC_final() for a full
236 computation.
237 Anything else may give undefined results.
238
239 =head1 RETURN VALUES
240
241 EVP_MAC_fetch() returns a pointer to a newly fetched EVP_MAC, or
242 NULL if allocation failed.
243
244 EVP_MAC_up_ref() returns 1 on success, 0 on error.
245
246 EVP_MAC_free() returns nothing at all.
247
248 EVP_MAC_name() returns the name of the MAC, or NULL if NULL was
249 passed.
250
251 EVP_MAC_provider() returns a pointer to the provider for the MAC, or
252 NULL on error.
253
254 EVP_MAC_CTX_new() and EVP_MAC_CTX_dup() return a pointer to a newly
255 created EVP_MAC_CTX, or NULL if allocation failed.
256
257 EVP_MAC_CTX_free() returns nothing at all.
258
259 EVP_MAC_CTX_get_params() and EVP_MAC_CTX_set_params() return 1 on
260 success, 0 on error.
261
262 EVP_MAC_init(), EVP_MAC_update(), and EVP_MAC_final() return 1 on success, 0
263 on error.
264
265 EVP_MAC_size() returns the expected output size, or 0 if it isn't
266 set.
267 If it isn't set, a call to EVP_MAC_init() should get it set.
268
269 EVP_MAC_do_all_ex() returns nothing at all.
270
271 =head1 EXAMPLES
272
273   #include <stdlib.h>
274   #include <stdio.h>
275   #include <string.h>
276   #include <stdarg.h>
277   #include <unistd.h>
278
279   #include <openssl/evp.h>
280   #include <openssl/err.h>
281   #include <openssl/params.h>
282
283   int main() {
284       EVP_MAC *mac = EVP_MAC_fetch(NULL, getenv("MY_MAC"), NULL);
285       const char *cipher = getenv("MY_MAC_CIPHER");
286       const char *digest = getenv("MY_MAC_DIGEST");
287       const char *key = getenv("MY_KEY");
288       EVP_MAC_CTX *ctx = NULL;
289
290       unsigned char buf[4096];
291       ssize_t read_l;
292       size_t final_l;
293
294       size_t i;
295
296       OSSL_PARAM params[4];
297       size_t params_n = 0;
298
299       if (cipher != NULL)
300           params[params_n++] =
301               OSSL_PARAM_construct_utf8_string("cipher", cipher,
302                                                strlen(cipher) + 1, NULL);
303       if (digest != NULL)
304           params[params_n++] =
305               OSSL_PARAM_construct_utf8_string("digest", digest,
306                                                strlen(digest) + 1, NULL);
307       params[params_n++] =
308           OSSL_PARAM_construct_octet_string("key", key, strlen(key), NULL);
309       params[params_n] = OSSL_PARAM_construct_end();
310
311       if (mac == NULL
312           || key == NULL
313           || (ctx = EVP_MAC_CTX_new(mac)) == NULL
314           || EVP_MAC_CTX_set_params(ctx, params) <= 0)
315           goto err;
316
317       if (!EVP_MAC_init(ctx))
318           goto err;
319
320       while ( (read_l = read(STDIN_FILENO, buf, sizeof(buf))) < 0) {
321           if (!EVP_MAC_update(ctx, buf, read_l))
322               goto err;
323       }
324
325       if (!EVP_MAC_final(ctx, buf, &final_l))
326           goto err;
327
328       printf("Result: ");
329       for (i = 0; i < final_l; i++)
330           printf("%02X", buf[i]);
331       printf("\n");
332
333       EVP_MAC_CTX_free(ctx);
334       EVP_MAC_free(mac);
335       exit(0);
336
337    err:
338       EVP_MAC_CTX_free(ctx);
339       EVP_MAC_free(mac);
340       fprintf(stderr, "Something went wrong\n");
341       ERR_print_errors_fp(stderr);
342       exit (1);
343   }
344
345 A run of this program, called with correct environment variables, can
346 look like this:
347
348   $ MY_MAC=cmac MY_KEY=secret0123456789 MY_MAC_CIPHER=aes-128-cbc \
349     LD_LIBRARY_PATH=. ./foo < foo.c
350   Result: ECCAAFF041B22A2299EB90A1B53B6D45
351
352 (in this example, that program was stored in F<foo.c> and compiled to
353 F<./foo>)
354
355 =head1 SEE ALSO
356
357 L<property(7)>
358 L<OSSL_PARAM(3)>,
359 L<EVP_MAC_BLAKE2(7)>,
360 L<EVP_MAC_CMAC(7)>,
361 L<EVP_MAC_GMAC(7)>,
362 L<EVP_MAC_HMAC(7)>,
363 L<EVP_MAC_KMAC(7)>,
364 L<EVP_MAC_SIPHASH(7)>,
365 L<EVP_MAC_POLY1305(7)>
366
367 =head1 HISTORY
368
369 These functions were added in OpenSSL 3.0.
370
371 =head1 COPYRIGHT
372
373 Copyright 2018-2019 The OpenSSL Project Authors. All Rights Reserved.
374
375 Licensed under the Apache License 2.0 (the "License").  You may not use
376 this file except in compliance with the License.  You can obtain a copy
377 in the file LICENSE in the source distribution or at
378 L<https://www.openssl.org/source/license.html>.
379
380 =cut