]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man7/EVP_MAC-Poly1305.pod
Add support for SHA256/192
[thirdparty/openssl.git] / doc / man7 / EVP_MAC-Poly1305.pod
CommitLineData
e592dbde
RL
1=pod
2
3=head1 NAME
4
5EVP_MAC-Poly1305 - The Poly1305 EVP_MAC implementation
6
7=head1 DESCRIPTION
8
9Support for computing Poly1305 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
745fc918 18=item "POLY1305", "provider=default"
e592dbde
RL
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 26
865adf97 27The following parameter can be set with EVP_MAC_CTX_set_params():
e592dbde
RL
28
29=over 4
30
0c452a51 31=item "key" (B<OSSL_MAC_PARAM_KEY>) <octet string>
e592dbde 32
8593ff00
RL
33Sets the MAC key.
34Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
35
e592dbde
RL
36=back
37
38The following parameters can be retrieved with
865adf97 39EVP_MAC_CTX_get_params():
e592dbde
RL
40
41=over 4
42
0c452a51 43=item "size" (B<OSSL_MAC_PARAM_SIZE>) <unsigned integer>
e592dbde 44
8593ff00
RL
45Gets the MAC size.
46
e592dbde
RL
47=back
48
90a2576b 49The "size" parameter can also be retrieved with with EVP_MAC_CTX_get_mac_size().
f49a65d0 50The length of the "size" parameter should not exceed that of an B<unsigned int>.
e592dbde 51
bbf5ccfd
P
52=head1 NOTES
53
54The OpenSSL implementation of the Poly 1305 MAC corresponds to RFC 7539.
55
56It is critical to never reuse the key. The security implication noted in
57RFC 8439 applies equally to the OpenSSL implementation.
58
e592dbde
RL
59=head1 SEE ALSO
60
865adf97 61L<EVP_MAC_CTX_get_params(3)>, L<EVP_MAC_CTX_set_params(3)>,
fddb1847 62L<EVP_MAC(3)/PARAMETERS>, L<OSSL_PARAM(3)>
e592dbde
RL
63
64=head1 COPYRIGHT
65
8020d79b 66Copyright 2018-2021 The OpenSSL Project Authors. All Rights Reserved.
e592dbde
RL
67
68Licensed under the Apache License 2.0 (the "License"). You may not use
69this file except in compliance with the License. You can obtain a copy
70in the file LICENSE in the source distribution or at
71L<https://www.openssl.org/source/license.html>.
72
73=cut