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