md5.h
上传用户:jhonsonho
上传日期:2021-11-15
资源大小:15k
文件大小:3k
源码类别:

CA认证

开发平台:

Visual C++

  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.   Independent implementation of MD5 (RFC 1321).
  21.   This code implements the MD5 Algorithm defined in RFC 1321.
  22.   It is derived directly from the text of the RFC and not from the
  23.   reference implementation.
  24.   The original and principal author of md5.h is L. Peter Deutsch
  25.   <ghost@aladdin.com>.  Other authors are noted in the change history
  26.   that follows (in reverse chronological order):
  27.   1999-11-04 lpd Edited comments slightly for automatic TOC extraction.
  28.   1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5);
  29. added conditionalization for C++ compilation from Martin
  30. Purschke <purschke@bnl.gov>.
  31.   1999-05-03 lpd Original version.
  32.  */
  33. #ifndef md5_INCLUDED
  34. #  define md5_INCLUDED
  35. /*
  36.  * This code has some adaptations for the Ghostscript environment, but it
  37.  * will compile and run correctly in any environment with 8-bit chars and
  38.  * 32-bit ints.  Specifically, it assumes that if the following are
  39.  * defined, they have the same meaning as in Ghostscript: P1, P2, P3,
  40.  * ARCH_IS_BIG_ENDIAN.
  41.  */
  42. typedef unsigned char md5_byte_t; /* 8-bit byte */
  43. typedef unsigned int md5_word_t; /* 32-bit word */
  44. /* Define the state of the MD5 Algorithm. */
  45. typedef struct md5_state_s {
  46.     md5_word_t count[2]; /* message length in bits, lsw first */
  47.     md5_word_t abcd[4]; /* digest buffer */
  48.     md5_byte_t buf[64]; /* accumulate block */
  49. } md5_state_t;
  50. #ifdef __cplusplus
  51. extern "C" 
  52. {
  53. #endif
  54. /* Initialize the algorithm. */
  55. #ifdef P1
  56. void md5_init(P1(md5_state_t *pms));
  57. #else
  58. void md5_init(md5_state_t *pms);
  59. #endif
  60. /* Append a string to the message. */
  61. #ifdef P3
  62. void md5_append(P3(md5_state_t *pms, const md5_byte_t *data, int nbytes));
  63. #else
  64. void md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes);
  65. #endif
  66. /* Finish the message and return the digest. */
  67. #ifdef P2
  68. void md5_finish(P2(md5_state_t *pms, md5_byte_t digest[16]));
  69. #else
  70. void md5_finish(md5_state_t *pms, md5_byte_t digest[16]);
  71. #endif
  72. void MD5(char *pass,  int len, char *md5ed);
  73. #ifdef __cplusplus
  74. }  /* end extern "C" */
  75. #endif
  76. #endif /* md5_INCLUDED */