EVP_MAC-CMAC.pod 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. =pod
  2. =head1 NAME
  3. EVP_MAC-CMAC - The CMAC EVP_MAC implementation
  4. =head1 DESCRIPTION
  5. Support for computing CMAC 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 "CMAC", "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 "cipher" (B<OSSL_MAC_PARAM_CIPHER>) <UTF8 string>
  23. Sets the name of the underlying cipher to be used.
  24. =item "properties" (B<OSSL_MAC_PARAM_PROPERTIES>) <UTF8 string>
  25. Sets the properties to be queried when trying to fetch the underlying cipher.
  26. This must be given together with the cipher naming parameter to be considered
  27. valid.
  28. =back
  29. The following parameters can be retrieved with
  30. EVP_MAC_CTX_get_params():
  31. =over 4
  32. =item "size" (B<OSSL_MAC_PARAM_SIZE>) <unsigned integer>
  33. The "size" parameter can also be retrieved with with EVP_MAC_CTX_get_mac_size().
  34. The length of the "size" parameter is equal to that of an B<unsigned int>.
  35. =back
  36. =over 4
  37. =item "block-size" (B<OSSL_MAC_PARAM_SIZE>) <unsigned integer>
  38. Gets the MAC block size. The "block-size" parameter can also be retrieved with
  39. EVP_MAC_CTX_get_block_size().
  40. =back
  41. =head1 SEE ALSO
  42. L<EVP_MAC_CTX_get_params(3)>, L<EVP_MAC_CTX_set_params(3)>,
  43. L<EVP_MAC(3)/PARAMETERS>, L<OSSL_PARAM(3)>
  44. =head1 COPYRIGHT
  45. Copyright 2018-2021 The OpenSSL Project Authors. All Rights Reserved.
  46. Licensed under the Apache License 2.0 (the "License"). You may not use
  47. this file except in compliance with the License. You can obtain a copy
  48. in the file LICENSE in the source distribution or at
  49. L<https://www.openssl.org/source/license.html>.
  50. =cut