md5.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. Copyright (C) 1999 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. /*
  20. This code implements the MD5 Algorithm defined in RFC 1321.
  21. It is derived directly from the text of the RFC and not from the
  22. reference implementation.
  23. The original and principal author of ansi2knr is L. Peter Deutsch
  24. <ghost@aladdin.com>. Other authors are noted in the change history
  25. that follows (in reverse chronological order):
  26. 1999-05-03 lpd Original version.
  27. */
  28. /*$Id: md5.h,v 1.1 1999/05/28 07:07:17 mike Exp $ */
  29. #ifndef md5_INCLUDED
  30. #define md5_INCLUDED
  31. /*
  32. * This code has some adaptations for the Ghostscript environment, but it
  33. * will compile and run correctly in any environment with 8-bit chars and
  34. * 32-bit ints. Specifically, it assumes that if the following are
  35. * defined, they have the same meaning as in Ghostscript: P1, P2, P3,
  36. * ARCH_IS_BIG_ENDIAN.
  37. */
  38. typedef unsigned char md5_byte_t; /* 8-bit byte */
  39. typedef unsigned int md5_word_t; /* 32-bit word */
  40. /* Define the state of the MD5 Algorithm. */
  41. typedef struct md5_state_s {
  42. md5_word_t count[2]; /* message length in bits, lsw first */
  43. md5_word_t abcd[4]; /* digest buffer */
  44. md5_byte_t buf[64]; /* accumulate block */
  45. } md5_state_t;
  46. /* Initialize the algorithm. */
  47. #ifdef P1
  48. void md5_init(P1(md5_state_t *pms));
  49. #else
  50. void md5_init(md5_state_t *pms);
  51. #endif
  52. /* Append a string to the message. */
  53. #ifdef P3
  54. void md5_append(P3(md5_state_t *pms, const md5_byte_t *data, int nbytes));
  55. #else
  56. void md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes);
  57. #endif
  58. /* Finish the message and return the digest. */
  59. #ifdef P2
  60. void md5_finish(P2(md5_state_t *pms, md5_byte_t digest[16]));
  61. #else
  62. void md5_finish(md5_state_t *pms, md5_byte_t digest[16]);
  63. #endif
  64. #endif /* md5_INCLUDED */