EVP_ripemd160.pod 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. =over 4
  12. =item EVP_ripemd160()
  13. The RIPEMD-160 algorithm which produces a 160-bit output from a given input.
  14. =back
  15. =head1 RETURN VALUES
  16. These functions return a B<EVP_MD> structure that contains the
  17. implementation of the symmetric cipher. See L<EVP_MD_meth_new(3)> for
  18. details of the B<EVP_MD> structure.
  19. =head1 CONFORMING TO
  20. ISO/IEC 10118-3:2016 Dedicated Hash-Function 1 (RIPEMD-160).
  21. =head1 SEE ALSO
  22. L<evp(7)>,
  23. L<EVP_DigestInit(3)>
  24. =head1 COPYRIGHT
  25. Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
  26. Licensed under the OpenSSL license (the "License"). You may not use
  27. this file except in compliance with the License. You can obtain a copy
  28. in the file LICENSE in the source distribution or at
  29. L<https://www.openssl.org/source/license.html>.
  30. =cut