EVP_SIGNATURE-HMAC.pod 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. =pod
  2. =head1 NAME
  3. EVP_SIGNATURE-HMAC, EVP_SIGNATURE-Siphash, EVP_SIGNATURE-Poly1305,
  4. EVP_SIGNATURE-CMAC
  5. - The legacy B<EVP_PKEY> MAC signature implementations
  6. =head1 DESCRIPTION
  7. The algorithms described here have legacy support for creating MACs using
  8. L<EVP_DigestSignInit(3)> and related functions. This is not the preferred way of
  9. creating MACs. Instead you should use the newer L<EVP_MAC_init(3)> functions.
  10. This mechanism is provided for backwards compatibility with older versions of
  11. OpenSSL.
  12. The same signature parameters can be set using EVP_PKEY_CTX_set_params() as can
  13. be set via EVP_MAC_CTX_set_params() for the underlying EVP_MAC. See
  14. L<EVP_MAC-HMAC(7)>, L<EVP_MAC-Siphash(7)>, L<EVP_MAC-Poly1305(7)> and
  15. L<EVP_MAC-CMAC(7)> for details.
  16. See L<EVP_PKEY-HMAC(7)>, L<EVP_PKEY-Siphash(7)>, L<EVP_PKEY-Poly1305(7)> or
  17. L<EVP_PKEY-CMAC(7)> for details about parameters that are supported during the
  18. creation of an EVP_PKEY.
  19. =head1 SEE ALSO
  20. L<EVP_MAC_init(3)>,
  21. L<EVP_DigestSignInit(3)>,
  22. L<EVP_PKEY-HMAC(7)>,
  23. L<EVP_PKEY-Siphash(7)>,
  24. L<EVP_PKEY-Poly1305(7)>,
  25. L<EVP_PKEY-CMAC(7)>,
  26. L<EVP_MAC-HMAC(7)>,
  27. L<EVP_MAC-Siphash(7)>,
  28. L<EVP_MAC-Poly1305(7)>,
  29. L<EVP_MAC-CMAC(7)>,
  30. L<provider-signature(7)>,
  31. =head1 COPYRIGHT
  32. Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
  33. Licensed under the Apache License 2.0 (the "License"). You may not use
  34. this file except in compliance with the License. You can obtain a copy
  35. in the file LICENSE in the source distribution or at
  36. L<https://www.openssl.org/source/license.html>.
  37. =cut