EVP_MAC-GMAC.pod 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. =pod
  2. =head1 NAME
  3. EVP_MAC-GMAC - The GMAC EVP_MAC implementation
  4. =head1 DESCRIPTION
  5. Support for computing GMAC MACs through the B<EVP_MAC> API.
  6. This implementation uses EVP_CIPHER functions to get access to the underlying
  7. cipher.
  8. =head2 Identity
  9. This implementation is identified with this name and properties, to be
  10. used with EVP_MAC_fetch():
  11. =over 4
  12. =item "GMAC", "provider=default" or "provider=fips"
  13. =back
  14. =head2 Supported parameters
  15. The general description of these parameters can be found in
  16. L<EVP_MAC(3)/PARAMETERS>.
  17. The following parameter can be set with EVP_MAC_CTX_set_params():
  18. =over 4
  19. =item "key" (B<OSSL_MAC_PARAM_KEY>) <octet string>
  20. Sets the MAC key.
  21. Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
  22. =item "iv" (B<OSSL_MAC_PARAM_IV>) <octet string>
  23. Sets the IV of the underlying cipher, when applicable.
  24. =item "cipher" (B<OSSL_MAC_PARAM_CIPHER>) <UTF8 string>
  25. Sets the name of the underlying cipher to be used.
  26. =item "properties" (B<OSSL_MAC_PARAM_PROPERTIES>) <UTF8 string>
  27. Sets the properties to be queried when trying to fetch the underlying cipher.
  28. This must be given together with the cipher naming parameter to be considered
  29. valid.
  30. =back
  31. The following parameters can be retrieved with
  32. EVP_MAC_CTX_get_params():
  33. =over 4
  34. =item "size" (B<OSSL_MAC_PARAM_SIZE>) <unsigned integer>
  35. Gets the MAC size.
  36. =back
  37. The "size" parameter can also be retrieved with EVP_MAC_CTX_get_mac_size().
  38. The length of the "size" parameter is equal to that of an B<unsigned int>.
  39. =head1 SEE ALSO
  40. L<EVP_MAC_CTX_get_params(3)>, L<EVP_MAC_CTX_set_params(3)>,
  41. L<EVP_MAC(3)/PARAMETERS>, L<OSSL_PARAM(3)>
  42. =head1 COPYRIGHT
  43. Copyright 2018-2021 The OpenSSL Project Authors. All Rights Reserved.
  44. Licensed under the Apache License 2.0 (the "License"). You may not use
  45. this file except in compliance with the License. You can obtain a copy
  46. in the file LICENSE in the source distribution or at
  47. L<https://www.openssl.org/source/license.html>.
  48. =cut