EVP_MD-SHA2.pod 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. =pod
  2. =head1 NAME
  3. EVP_MD-SHA2 - The SHA2 EVP_MD implementation
  4. =head1 DESCRIPTION
  5. Support for computing SHA2 digests through the B<EVP_MD> API.
  6. =head2 Identities
  7. This implementation includes the following varieties:
  8. =over 4
  9. =item *
  10. Available with the FIPS provider as well as the default provider:
  11. =over 4
  12. =item SHA2-224
  13. Known names are "SHA2-224", "SHA-224" and "SHA224".
  14. =item SHA2-256
  15. Known names are "SHA2-256", "SHA-256" and "SHA256".
  16. =item SHA2-384
  17. Known names are "SHA2-384", "SHA-384" and "SHA384".
  18. =item SHA2-512
  19. Known names are "SHA2-512", "SHA-512" and "SHA512".
  20. =back
  21. =item *
  22. Available with the default provider:
  23. =over 4
  24. =item SHA2-512/224
  25. Known names are "SHA2-512/224", "SHA-512/224" and "SHA512-224".
  26. =item SHA2-512/256
  27. Known names are "SHA2-512/256", "SHA-512/256" and "SHA512-256".
  28. =back
  29. =back
  30. =head2 Gettable Parameters
  31. This implementation supports the common gettable parameters described
  32. in L<EVP_MD-common(7)>.
  33. =head1 SEE ALSO
  34. L<provider-digest(7)>, L<OSSL_PROVIDER-FIPS(7)>, L<OSSL_PROVIDER-default(7)>
  35. =head1 COPYRIGHT
  36. Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
  37. Licensed under the Apache License 2.0 (the "License"). You may not use
  38. this file except in compliance with the License. You can obtain a copy
  39. in the file LICENSE in the source distribution or at
  40. L<https://www.openssl.org/source/license.html>.
  41. =cut