EVP_ripemd160.pod 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. =pod
  2. =head1 NAME
  3. EVP_ripemd160
  4. - RIPEMD160 For EVP
  5. =head1 SYNOPSIS
  6. #include <openssl/evp.h>
  7. const EVP_MD *EVP_ripemd160(void);
  8. =head1 DESCRIPTION
  9. RIPEMD-160 is a cryptographic hash function first published in 1996 belonging
  10. to the RIPEMD family (RACE Integrity Primitives Evaluation Message Digest).
  11. This implementation is only available with the legacy provider.
  12. =over 4
  13. =item EVP_ripemd160()
  14. The RIPEMD-160 algorithm which produces a 160-bit output from a given input.
  15. =back
  16. =head1 RETURN VALUES
  17. These functions return a B<EVP_MD> structure that contains the
  18. implementation of the symmetric cipher. See L<EVP_MD_meth_new(3)> for
  19. details of the B<EVP_MD> structure.
  20. =head1 CONFORMING TO
  21. ISO/IEC 10118-3:2016 Dedicated Hash-Function 1 (RIPEMD-160).
  22. =head1 SEE ALSO
  23. L<evp(7)>,
  24. L<provider(7)>,
  25. L<EVP_DigestInit(3)>
  26. =head1 COPYRIGHT
  27. Copyright 2017-2020 The OpenSSL Project Authors. All Rights Reserved.
  28. Licensed under the Apache License 2.0 (the "License"). You may not use
  29. this file except in compliance with the License. You can obtain a copy
  30. in the file LICENSE in the source distribution or at
  31. L<https://www.openssl.org/source/license.html>.
  32. =cut