EVP_md5.pod 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. =pod
  2. =head1 NAME
  3. EVP_md5
  4. - MD5 For EVP
  5. =head1 SYNOPSIS
  6. #include <openssl/evp.h>
  7. const EVP_MD *EVP_md5(void);
  8. =head1 DESCRIPTION
  9. MD5 is a cryptographic hash function standardized in RFC 1321 and designed by
  10. Ronald Rivest.
  11. The CMU Software Engineering Institute considers MD5 unsuitable for further
  12. use since its security has been severely compromised.
  13. =over 4
  14. =item EVP_md5()
  15. The MD5 algorithm which produces a 128-bit output from a given input.
  16. =item EVP_md5_sha1()
  17. A hash algorithm of SSL v3 that combines MD5 with SHA-1 as decirbed in RFC
  18. 6101.
  19. WARNING: this algorithm is not intended for non-SSL usage.
  20. =back
  21. =head1 RETURN VALUES
  22. These functions return a B<EVP_MD> structure that contains the
  23. implementation of the symmetric cipher. See L<EVP_MD_meth_new(3)> for
  24. details of the B<EVP_MD> structure.
  25. =head1 CONFORMING TO
  26. IETF RFC 1321.
  27. =head1 SEE ALSO
  28. L<evp(7)>,
  29. L<EVP_DigestInit(3)>
  30. =head1 COPYRIGHT
  31. Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
  32. Licensed under the OpenSSL license (the "License"). You may not use
  33. this file except in compliance with the License. You can obtain a copy
  34. in the file LICENSE in the source distribution or at
  35. L<https://www.openssl.org/source/license.html>.
  36. =cut