md5.h 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. Copyright (C) 1999, 2002 Aladdin Enterprises. All rights reserved.
  3. This software is provided 'as-is', without any express or implied
  4. warranty. In no event will the authors be held liable for any damages
  5. arising from the use of this software.
  6. Permission is granted to anyone to use this software for any purpose,
  7. including commercial applications, and to alter it and redistribute it
  8. freely, subject to the following restrictions:
  9. 1. The origin of this software must not be misrepresented; you must not
  10. claim that you wrote the original software. If you use this software
  11. in a product, an acknowledgment in the product documentation would be
  12. appreciated but is not required.
  13. 2. Altered source versions must be plainly marked as such, and must not be
  14. misrepresented as being the original software.
  15. 3. This notice may not be removed or altered from any source distribution.
  16. L. Peter Deutsch
  17. ghost@aladdin.com
  18. */
  19. /* $Id: md5.h,v 1.4 2002/04/13 19:20:28 lpd Exp $ */
  20. /*
  21. Independent implementation of MD5 (RFC 1321).
  22. This code implements the MD5 Algorithm defined in RFC 1321, whose
  23. text is available at
  24. http://www.ietf.org/rfc/rfc1321.txt
  25. The code is derived from the text of the RFC, including the test suite
  26. (section A.5) but excluding the rest of Appendix A. It does not include
  27. any code or documentation that is identified in the RFC as being
  28. copyrighted.
  29. The original and principal author of md5.h is L. Peter Deutsch
  30. <ghost@aladdin.com>. Other authors are noted in the change history
  31. that follows (in reverse chronological order):
  32. 2002-04-13 lpd Removed support for non-ANSI compilers; removed
  33. references to Ghostscript; clarified derivation from RFC 1321;
  34. now handles byte order either statically or dynamically.
  35. 1999-11-04 lpd Edited comments slightly for automatic TOC extraction.
  36. 1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5);
  37. added conditionalization for C++ compilation from Martin
  38. Purschke <purschke@bnl.gov>.
  39. 1999-05-03 lpd Original version.
  40. */
  41. #ifndef md5_INCLUDED
  42. # define md5_INCLUDED
  43. /*
  44. * This package supports both compile-time and run-time determination of CPU
  45. * byte order. If ARCH_IS_BIG_ENDIAN is defined as 0, the code will be
  46. * compiled to run only on little-endian CPUs; if ARCH_IS_BIG_ENDIAN is
  47. * defined as non-zero, the code will be compiled to run only on big-endian
  48. * CPUs; if ARCH_IS_BIG_ENDIAN is not defined, the code will be compiled to
  49. * run on either big- or little-endian CPUs, but will run slightly less
  50. * efficiently on either one than if ARCH_IS_BIG_ENDIAN is defined.
  51. */
  52. typedef unsigned char md5_byte_t; /* 8-bit byte */
  53. typedef unsigned int md5_word_t; /* 32-bit word */
  54. /* Define the state of the MD5 Algorithm. */
  55. typedef struct md5_state_s {
  56. md5_word_t count[2]; /* message length in bits, lsw first */
  57. md5_word_t abcd[4]; /* digest buffer */
  58. md5_byte_t buf[64]; /* accumulate block */
  59. } md5_state_t;
  60. #ifdef __cplusplus
  61. extern "C"
  62. {
  63. #endif
  64. /* Initialize the algorithm. */
  65. void md5_init(md5_state_t *pms);
  66. /* Append a string to the message. */
  67. void md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes);
  68. /* Finish the message and return the digest. */
  69. void md5_finish(md5_state_t *pms, md5_byte_t digest[16]);
  70. #ifdef __cplusplus
  71. } /* end extern "C" */
  72. #endif
  73. #endif /* md5_INCLUDED */