]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man7/EVP_MAC-HMAC.pod
Remove the engine parameter from the individual MAC documentation
[thirdparty/openssl.git] / doc / man7 / EVP_MAC-HMAC.pod
CommitLineData
e592dbde
RL
1=pod
2
3=head1 NAME
4
5EVP_MAC-HMAC - The HMAC EVP_MAC implementation
6
7=head1 DESCRIPTION
8
9Support for computing HMAC MACs through the B<EVP_MAC> API.
10
11=head2 Identity
12
13This implementation is identified with this name and properties, to be
14used with EVP_MAC_fetch():
15
16=over 4
17
18=item "HMAC", "default=yes"
19
20=back
21
22=head2 Supported parameters
23
24The general description of these parameters can be found in
fddb1847 25L<EVP_MAC(3)/PARAMETERS>.
e592dbde
RL
26
27The following parameter can be set with EVP_MAC_CTX_set_params():
28
29=over 4
30
31=item B<OSSL_MAC_PARAM_KEY> ("key") <octet string>
32
33=item B<OSSL_MAC_PARAM_FLAGS> ("flags") <octet string>
34
e592dbde
RL
35=item B<OSSL_MAC_PARAM_DIGEST> ("digest") <utf8 string>
36
37=item B<OSSL_MAC_PARAM_PROPERTIES> ("properties") <utf8 string>
38
39=back
40
41The "flags" parameter is passed directly to HMAC_CTX_set_flags().
42
43The following parameters can be retrieved with
44EVP_MAC_CTX_get_params():
45
46=over 4
47
48=item B<OSSL_MAC_PARAM_SIZE> ("size") <unsigned int>
49
50=back
51
52The "size" parameter can also be retrieved with EVP_MAC_size().
53
54=head1 SEE ALSO
55
56L<EVP_MAC_CTX_get_params(3)>, L<EVP_MAC_CTX_set_params(3)>,
fddb1847 57L<EVP_MAC(3)/PARAMETERS>, L<OSSL_PARAM(3)>, L<HMAC(3)>
e592dbde
RL
58
59=head1 COPYRIGHT
60
61Copyright 2018-2019 The OpenSSL Project Authors. All Rights Reserved.
62
63Licensed under the Apache License 2.0 (the "License"). You may not use
64this file except in compliance with the License. You can obtain a copy
65in the file LICENSE in the source distribution or at
66L<https://www.openssl.org/source/license.html>.
67
68=cut