MD5.html 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?xml version="1.0" ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <title>MD5</title>
  6. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  7. <link rev="made" href="mailto:root@localhost" />
  8. </head>
  9. <body>
  10. <ul id="index">
  11. <li><a href="#NAME">NAME</a></li>
  12. <li><a href="#SYNOPSIS">SYNOPSIS</a></li>
  13. <li><a href="#DESCRIPTION">DESCRIPTION</a></li>
  14. <li><a href="#NOTE">NOTE</a></li>
  15. <li><a href="#RETURN-VALUES">RETURN VALUES</a></li>
  16. <li><a href="#CONFORMING-TO">CONFORMING TO</a></li>
  17. <li><a href="#SEE-ALSO">SEE ALSO</a></li>
  18. <li><a href="#HISTORY">HISTORY</a></li>
  19. <li><a href="#COPYRIGHT">COPYRIGHT</a></li>
  20. </ul>
  21. <h1 id="NAME">NAME</h1>
  22. <p>MD2, MD4, MD5, MD2_Init, MD2_Update, MD2_Final, MD4_Init, MD4_Update, MD4_Final, MD5_Init, MD5_Update, MD5_Final - MD2, MD4, and MD5 hash functions</p>
  23. <h1 id="SYNOPSIS">SYNOPSIS</h1>
  24. <p>The following functions have been deprecated since OpenSSL 3.0, and can be hidden entirely by defining <b>OPENSSL_API_COMPAT</b> with a suitable version value, see <a href="../man7/openssl_user_macros.html">openssl_user_macros(7)</a>:</p>
  25. <pre><code>#include &lt;openssl/md2.h&gt;
  26. unsigned char *MD2(const unsigned char *d, unsigned long n, unsigned char *md);
  27. int MD2_Init(MD2_CTX *c);
  28. int MD2_Update(MD2_CTX *c, const unsigned char *data, unsigned long len);
  29. int MD2_Final(unsigned char *md, MD2_CTX *c);</code></pre>
  30. <p>The following functions have been deprecated since OpenSSL 3.0, and can be hidden entirely by defining <b>OPENSSL_API_COMPAT</b> with a suitable version value, see <a href="../man7/openssl_user_macros.html">openssl_user_macros(7)</a>:</p>
  31. <pre><code>#include &lt;openssl/md4.h&gt;
  32. unsigned char *MD4(const unsigned char *d, unsigned long n, unsigned char *md);
  33. int MD4_Init(MD4_CTX *c);
  34. int MD4_Update(MD4_CTX *c, const void *data, unsigned long len);
  35. int MD4_Final(unsigned char *md, MD4_CTX *c);</code></pre>
  36. <p>The following functions have been deprecated since OpenSSL 3.0, and can be hidden entirely by defining <b>OPENSSL_API_COMPAT</b> with a suitable version value, see <a href="../man7/openssl_user_macros.html">openssl_user_macros(7)</a>:</p>
  37. <pre><code>#include &lt;openssl/md5.h&gt;
  38. unsigned char *MD5(const unsigned char *d, unsigned long n, unsigned char *md);
  39. int MD5_Init(MD5_CTX *c);
  40. int MD5_Update(MD5_CTX *c, const void *data, unsigned long len);
  41. int MD5_Final(unsigned char *md, MD5_CTX *c);</code></pre>
  42. <h1 id="DESCRIPTION">DESCRIPTION</h1>
  43. <p>All of the functions described on this page are deprecated. Applications should instead use <a href="../man3/EVP_DigestInit_ex.html">EVP_DigestInit_ex(3)</a>, <a href="../man3/EVP_DigestUpdate.html">EVP_DigestUpdate(3)</a> and <a href="../man3/EVP_DigestFinal_ex.html">EVP_DigestFinal_ex(3)</a>.</p>
  44. <p>MD2, MD4, and MD5 are cryptographic hash functions with a 128 bit output.</p>
  45. <p>MD2(), MD4(), and MD5() compute the MD2, MD4, and MD5 message digest of the <b>n</b> bytes at <b>d</b> and place it in <b>md</b> (which must have space for MD2_DIGEST_LENGTH == MD4_DIGEST_LENGTH == MD5_DIGEST_LENGTH == 16 bytes of output). If <b>md</b> is NULL, the digest is placed in a static array.</p>
  46. <p>The following functions may be used if the message is not completely stored in memory:</p>
  47. <p>MD2_Init() initializes a <b>MD2_CTX</b> structure.</p>
  48. <p>MD2_Update() can be called repeatedly with chunks of the message to be hashed (<b>len</b> bytes at <b>data</b>).</p>
  49. <p>MD2_Final() places the message digest in <b>md</b>, which must have space for MD2_DIGEST_LENGTH == 16 bytes of output, and erases the <b>MD2_CTX</b>.</p>
  50. <p>MD4_Init(), MD4_Update(), MD4_Final(), MD5_Init(), MD5_Update(), and MD5_Final() are analogous using an <b>MD4_CTX</b> and <b>MD5_CTX</b> structure.</p>
  51. <p>Applications should use the higher level functions <a href="../man3/EVP_DigestInit.html">EVP_DigestInit(3)</a> etc. instead of calling the hash functions directly.</p>
  52. <h1 id="NOTE">NOTE</h1>
  53. <p>MD2, MD4, and MD5 are recommended only for compatibility with existing applications. In new applications, hashes from the SHA-2 or SHA-3 family should be preferred.</p>
  54. <h1 id="RETURN-VALUES">RETURN VALUES</h1>
  55. <p>MD2(), MD4(), and MD5() return pointers to the hash value.</p>
  56. <p>MD2_Init(), MD2_Update(), MD2_Final(), MD4_Init(), MD4_Update(), MD4_Final(), MD5_Init(), MD5_Update(), and MD5_Final() return 1 for success, 0 otherwise.</p>
  57. <h1 id="CONFORMING-TO">CONFORMING TO</h1>
  58. <p>RFC 1319, RFC 1320, RFC 1321</p>
  59. <h1 id="SEE-ALSO">SEE ALSO</h1>
  60. <p><a href="../man3/EVP_DigestInit.html">EVP_DigestInit(3)</a>, <a href="../man7/EVP_MD-SHA2.html">EVP_MD-SHA2(7)</a>, <a href="../man7/EVP_MD-SHA3.html">EVP_MD-SHA3(7)</a></p>
  61. <h1 id="HISTORY">HISTORY</h1>
  62. <p>All of these functions were deprecated in OpenSSL 3.0.</p>
  63. <h1 id="COPYRIGHT">COPYRIGHT</h1>
  64. <p>Copyright 2000-2024 The OpenSSL Project Authors. All Rights Reserved.</p>
  65. <p>Licensed under the Apache License 2.0 (the &quot;License&quot;). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at <a href="https://www.openssl.org/source/license.html">https://www.openssl.org/source/license.html</a>.</p>
  66. </body>
  67. </html>