EVP_MAC-Siphash.pod 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. =pod
  2. =head1 NAME
  3. EVP_MAC-Siphash - The Siphash EVP_MAC implementation
  4. =head1 DESCRIPTION
  5. Support for computing Siphash MACs through the B<EVP_MAC> API.
  6. =head2 Identity
  7. This implementation is identified with this name and properties, to be
  8. used with EVP_MAC_fetch():
  9. =over 4
  10. =item "SIPHASH", "provider=default"
  11. =back
  12. =head2 Supported parameters
  13. The general description of these parameters can be found in
  14. L<EVP_MAC(3)/PARAMETERS>.
  15. All these parameters can be set with EVP_MAC_CTX_set_params().
  16. Furthermore, the "size" parameter can be retrieved with
  17. EVP_MAC_CTX_get_params(), or with EVP_MAC_CTX_get_mac_size().
  18. The length of the "size" parameter should not exceed that of a B<size_t>.
  19. =over 4
  20. =item "key" (B<OSSL_MAC_PARAM_KEY>) <octet string>
  21. Sets the MAC key.
  22. Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
  23. =item "size" (B<OSSL_MAC_PARAM_SIZE>) <unsigned integer>
  24. Sets the MAC size.
  25. =item "c-rounds" (B<OSSL_MAC_PARAM_C_ROUNDS>) <unsigned integer>
  26. Specifies the number of rounds per message block. By default this is I<2>.
  27. =item "d-rounds" (B<OSSL_MAC_PARAM_D_ROUNDS>) <unsigned integer>
  28. Specifies the number of finalisation rounds. By default this is I<4>.
  29. =back
  30. =head1 SEE ALSO
  31. L<EVP_MAC_CTX_get_params(3)>, L<EVP_MAC_CTX_set_params(3)>,
  32. L<EVP_MAC(3)/PARAMETERS>, L<OSSL_PARAM(3)>
  33. =head1 COPYRIGHT
  34. Copyright 2018-2021 The OpenSSL Project Authors. All Rights Reserved.
  35. Licensed under the Apache License 2.0 (the "License"). You may not use
  36. this file except in compliance with the License. You can obtain a copy
  37. in the file LICENSE in the source distribution or at
  38. L<https://www.openssl.org/source/license.html>.
  39. =cut