MD5.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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="#COPYRIGHT">COPYRIGHT</a></li>
  19. </ul>
  20. <h1 id="NAME">NAME</h1>
  21. <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>
  22. <h1 id="SYNOPSIS">SYNOPSIS</h1>
  23. <pre><code> #include &lt;openssl/md2.h&gt;
  24. unsigned char *MD2(const unsigned char *d, unsigned long n, unsigned char *md);
  25. int MD2_Init(MD2_CTX *c);
  26. int MD2_Update(MD2_CTX *c, const unsigned char *data, unsigned long len);
  27. int MD2_Final(unsigned char *md, MD2_CTX *c);
  28. #include &lt;openssl/md4.h&gt;
  29. unsigned char *MD4(const unsigned char *d, unsigned long n, unsigned char *md);
  30. int MD4_Init(MD4_CTX *c);
  31. int MD4_Update(MD4_CTX *c, const void *data, unsigned long len);
  32. int MD4_Final(unsigned char *md, MD4_CTX *c);
  33. #include &lt;openssl/md5.h&gt;
  34. unsigned char *MD5(const unsigned char *d, unsigned long n, unsigned char *md);
  35. int MD5_Init(MD5_CTX *c);
  36. int MD5_Update(MD5_CTX *c, const void *data, unsigned long len);
  37. int MD5_Final(unsigned char *md, MD5_CTX *c);</code></pre>
  38. <h1 id="DESCRIPTION">DESCRIPTION</h1>
  39. <p>MD2, MD4, and MD5 are cryptographic hash functions with a 128 bit output.</p>
  40. <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>
  41. <p>The following functions may be used if the message is not completely stored in memory:</p>
  42. <p>MD2_Init() initializes a <b>MD2_CTX</b> structure.</p>
  43. <p>MD2_Update() can be called repeatedly with chunks of the message to be hashed (<b>len</b> bytes at <b>data</b>).</p>
  44. <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>
  45. <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>
  46. <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>
  47. <h1 id="NOTE">NOTE</h1>
  48. <p>MD2, MD4, and MD5 are recommended only for compatibility with existing applications. In new applications, SHA-1 or RIPEMD-160 should be preferred.</p>
  49. <h1 id="RETURN-VALUES">RETURN VALUES</h1>
  50. <p>MD2(), MD4(), and MD5() return pointers to the hash value.</p>
  51. <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>
  52. <h1 id="CONFORMING-TO">CONFORMING TO</h1>
  53. <p>RFC 1319, RFC 1320, RFC 1321</p>
  54. <h1 id="SEE-ALSO">SEE ALSO</h1>
  55. <p><a href="../man3/EVP_DigestInit.html">EVP_DigestInit(3)</a></p>
  56. <h1 id="COPYRIGHT">COPYRIGHT</h1>
  57. <p>Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.</p>
  58. <p>Licensed under the OpenSSL license (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>
  59. </body>
  60. </html>