EVP_whirlpool.pod 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. =pod
  2. =head1 NAME
  3. EVP_whirlpool
  4. - WHIRLPOOL For EVP
  5. =head1 SYNOPSIS
  6. #include <openssl/evp.h>
  7. const EVP_MD *EVP_whirlpool(void);
  8. =head1 DESCRIPTION
  9. WHIRLPOOL is a cryptographic hash function standardized in ISO/IEC 10118-3:2004
  10. designed by Vincent Rijmen and Paulo S. L. M. Barreto. This implementation is
  11. only available with the legacy provider.
  12. =over 4
  13. =item EVP_whirlpool()
  14. The WHIRLPOOL algorithm that produces a message digest of 512-bits from a given
  15. input.
  16. =back
  17. =head1 RETURN VALUES
  18. These functions return a B<EVP_MD> structure that contains the
  19. implementation of the message digest. See L<EVP_MD_meth_new(3)> for
  20. details of the B<EVP_MD> structure.
  21. =head1 CONFORMING TO
  22. ISO/IEC 10118-3:2004.
  23. =head1 SEE ALSO
  24. L<evp(7)>,
  25. L<provider(7)>,
  26. L<EVP_DigestInit(3)>
  27. =head1 COPYRIGHT
  28. Copyright 2017-2022 The OpenSSL Project Authors. All Rights Reserved.
  29. Licensed under the Apache License 2.0 (the "License"). You may not use
  30. this file except in compliance with the License. You can obtain a copy
  31. in the file LICENSE in the source distribution or at
  32. L<https://www.openssl.org/source/license.html>.
  33. =cut