md5.c
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:13k
源码类别:

网络

开发平台:

Unix_Linux

  1. /* md5.c - Functions to compute MD5 message digest of files or memory blocks
  2.    according to the definition of MD5 in RFC 1321 from April 1992.
  3.    Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
  4.    This file is part of the GNU C Library.
  5.    The GNU C Library is free software; you can redistribute it and/or
  6.    modify it under the terms of the GNU Library General Public License as
  7.    published by the Free Software Foundation; either version 2 of the
  8.    License, or (at your option) any later version.
  9.    The GNU C Library is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.    Library General Public License for more details.
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with the GNU C Library; see the file COPYING.LIB.  If not,
  15.    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  16.    Boston, MA 02111-1307, USA.  */
  17. /* Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.  */
  18. #ifdef HAVE_CONFIG_H
  19. # include <config.h>
  20. #endif
  21. #include <sys/types.h>
  22. #if STDC_HEADERS || defined _LIBC
  23. # include <stdlib.h>
  24. # include <string.h>
  25. #else
  26. # ifndef HAVE_MEMCPY
  27. #  define memcpy(d, s, n) bcopy ((s), (d), (n))
  28. # endif
  29. #endif
  30. #include "md5-gnu.h"
  31. #ifdef _LIBC
  32. # include <endian.h>
  33. # if __BYTE_ORDER == __BIG_ENDIAN
  34. #  define WORDS_BIGENDIAN 1
  35. # endif
  36. /* We need to keep the namespace clean so define the MD5 function
  37.    protected using leading __ and use weak aliases.  */
  38. # define md5_init_ctx __md5_init_ctx
  39. # define md5_process_block __md5_process_block
  40. # define md5_process_bytes __md5_process_bytes
  41. # define md5_finish_ctx __md5_finish_ctx
  42. # define md5_read_ctx __md5_read_ctx
  43. # define md5_stream __md5_stream
  44. # define md5_buffer __md5_buffer
  45. #endif
  46. #ifdef WORDS_BIGENDIAN
  47. # define SWAP(n)
  48.     (((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24))
  49. #else
  50. # define SWAP(n) (n)
  51. #endif
  52. /* This array contains the bytes used to pad the buffer to the next
  53.    64-byte boundary.  (RFC 1321, 3.1: Step 1)  */
  54. static const unsigned char fillbuf[64] = { 0x80, 0 /* , 0, 0, ...  */ };
  55. /* Initialize structure containing state of computation.
  56.    (RFC 1321, 3.3: Step 3)  */
  57. void
  58. md5_init_ctx (ctx)
  59.      struct md5_ctx *ctx;
  60. {
  61.   ctx->A = 0x67452301;
  62.   ctx->B = 0xefcdab89;
  63.   ctx->C = 0x98badcfe;
  64.   ctx->D = 0x10325476;
  65.   ctx->total[0] = ctx->total[1] = 0;
  66.   ctx->buflen = 0;
  67. }
  68. /* Put result from CTX in first 16 bytes following RESBUF.  The result
  69.    must be in little endian byte order.
  70.    IMPORTANT: On some systems it is required that RESBUF is correctly
  71.    aligned for a 32 bits value.  */
  72. void *
  73. md5_read_ctx (ctx, resbuf)
  74.      const struct md5_ctx *ctx;
  75.      void *resbuf;
  76. {
  77.   ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
  78.   ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
  79.   ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
  80.   ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
  81.   return resbuf;
  82. }
  83. /* Process the remaining bytes in the internal buffer and the usual
  84.    prolog according to the standard and write the result to RESBUF.
  85.    IMPORTANT: On some systems it is required that RESBUF is correctly
  86.    aligned for a 32 bits value.  */
  87. void *
  88. md5_finish_ctx (ctx, resbuf)
  89.      struct md5_ctx *ctx;
  90.      void *resbuf;
  91. {
  92.   /* Take yet unprocessed bytes into account.  */
  93.   md5_uint32 bytes = ctx->buflen;
  94.   size_t pad;
  95.   /* Now count remaining bytes.  */
  96.   ctx->total[0] += bytes;
  97.   if (ctx->total[0] < bytes)
  98.     ++ctx->total[1];
  99.   pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes;
  100.   memcpy (&ctx->buffer[bytes], fillbuf, pad);
  101.   /* Put the 64-bit file length in *bits* at the end of the buffer.  */
  102.   *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
  103.   *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
  104. (ctx->total[0] >> 29));
  105.   /* Process last bytes.  */
  106.   md5_process_block (ctx->buffer, bytes + pad + 8, ctx);
  107.   return md5_read_ctx (ctx, resbuf);
  108. }
  109. /* Compute MD5 message digest for bytes read from STREAM.  The
  110.    resulting message digest number will be written into the 16 bytes
  111.    beginning at RESBLOCK.  */
  112. int
  113. md5_stream (stream, resblock)
  114.      FILE *stream;
  115.      void *resblock;
  116. {
  117.   /* Important: BLOCKSIZE must be a multiple of 64.  */
  118. #define BLOCKSIZE 4096
  119.   struct md5_ctx ctx;
  120.   char buffer[BLOCKSIZE + 72];
  121.   size_t sum;
  122.   /* Initialize the computation context.  */
  123.   md5_init_ctx (&ctx);
  124.   /* Iterate over full file contents.  */
  125.   while (1)
  126.     {
  127.       /* We read the file in blocks of BLOCKSIZE bytes.  One call of the
  128.  computation function processes the whole buffer so that with the
  129.  next round of the loop another block can be read.  */
  130.       size_t n;
  131.       sum = 0;
  132.       /* Read block.  Take care for partial reads.  */
  133.       do
  134. {
  135.   n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
  136.   sum += n;
  137. }
  138.       while (sum < BLOCKSIZE && n != 0);
  139.       if (n == 0 && ferror (stream))
  140.         return 1;
  141.       /* If end of file is reached, end the loop.  */
  142.       if (n == 0)
  143. break;
  144.       /* Process buffer with BLOCKSIZE bytes.  Note that
  145. BLOCKSIZE % 64 == 0
  146.        */
  147.       md5_process_block (buffer, BLOCKSIZE, &ctx);
  148.     }
  149.   /* Add the last bytes if necessary.  */
  150.   if (sum > 0)
  151.     md5_process_bytes (buffer, sum, &ctx);
  152.   /* Construct result in desired memory.  */
  153.   md5_finish_ctx (&ctx, resblock);
  154.   return 0;
  155. }
  156. /* Compute MD5 message digest for LEN bytes beginning at BUFFER.  The
  157.    result is always in little endian byte order, so that a byte-wise
  158.    output yields to the wanted ASCII representation of the message
  159.    digest.  */
  160. void *
  161. md5_buffer (buffer, len, resblock)
  162.      const char *buffer;
  163.      size_t len;
  164.      void *resblock;
  165. {
  166.   struct md5_ctx ctx;
  167.   /* Initialize the computation context.  */
  168.   md5_init_ctx (&ctx);
  169.   /* Process whole buffer but last len % 64 bytes.  */
  170.   md5_process_bytes (buffer, len, &ctx);
  171.   /* Put result in desired memory area.  */
  172.   return md5_finish_ctx (&ctx, resblock);
  173. }
  174. void
  175. md5_process_bytes (buffer, len, ctx)
  176.      const void *buffer;
  177.      size_t len;
  178.      struct md5_ctx *ctx;
  179. {
  180.   /* When we already have some bits in our internal buffer concatenate
  181.      both inputs first.  */
  182.   if (ctx->buflen != 0)
  183.     {
  184.       size_t left_over = ctx->buflen;
  185.       size_t add = 128 - left_over > len ? len : 128 - left_over;
  186.       memcpy (&ctx->buffer[left_over], buffer, add);
  187.       ctx->buflen += add;
  188.       if (left_over + add > 64)
  189. {
  190.   md5_process_block (ctx->buffer, (left_over + add) & ~63, ctx);
  191.   /* The regions in the following copy operation cannot overlap.  */
  192.   memcpy (ctx->buffer, &ctx->buffer[(left_over + add) & ~63],
  193.   (left_over + add) & 63);
  194.   ctx->buflen = (left_over + add) & 63;
  195. }
  196.       buffer = (const char *) buffer + add;
  197.       len -= add;
  198.     }
  199.   /* Process available complete blocks.  */
  200.   if (len > 64)
  201.     {
  202.       md5_process_block (buffer, len & ~63, ctx);
  203.       buffer = (const char *) buffer + (len & ~63);
  204.       len &= 63;
  205.     }
  206.   /* Move remaining bytes in internal buffer.  */
  207.   if (len > 0)
  208.     {
  209.       memcpy (ctx->buffer, buffer, len);
  210.       ctx->buflen = len;
  211.     }
  212. }
  213. /* These are the four functions used in the four steps of the MD5 algorithm
  214.    and defined in the RFC 1321.  The first function is a little bit optimized
  215.    (as found in Colin Plumbs public domain implementation).  */
  216. /* #define FF(b, c, d) ((b & c) | (~b & d)) */
  217. #define FF(b, c, d) (d ^ (b & (c ^ d)))
  218. #define FG(b, c, d) FF (d, b, c)
  219. #define FH(b, c, d) (b ^ c ^ d)
  220. #define FI(b, c, d) (c ^ (b | ~d))
  221. /* Process LEN bytes of BUFFER, accumulating context into CTX.
  222.    It is assumed that LEN % 64 == 0.  */
  223. void
  224. md5_process_block (buffer, len, ctx)
  225.      const void *buffer;
  226.      size_t len;
  227.      struct md5_ctx *ctx;
  228. {
  229.   md5_uint32 correct_words[16];
  230.   const md5_uint32 *words = buffer;
  231.   size_t nwords = len / sizeof (md5_uint32);
  232.   const md5_uint32 *endp = words + nwords;
  233.   md5_uint32 A = ctx->A;
  234.   md5_uint32 B = ctx->B;
  235.   md5_uint32 C = ctx->C;
  236.   md5_uint32 D = ctx->D;
  237.   /* First increment the byte count.  RFC 1321 specifies the possible
  238.      length of the file up to 2^64 bits.  Here we only compute the
  239.      number of bytes.  Do a double word increment.  */
  240.   ctx->total[0] += len;
  241.   if (ctx->total[0] < len)
  242.     ++ctx->total[1];
  243.   /* Process all bytes in the buffer with 64 bytes in each round of
  244.      the loop.  */
  245.   while (words < endp)
  246.     {
  247.       md5_uint32 *cwp = correct_words;
  248.       md5_uint32 A_save = A;
  249.       md5_uint32 B_save = B;
  250.       md5_uint32 C_save = C;
  251.       md5_uint32 D_save = D;
  252.       /* First round: using the given function, the context and a constant
  253.  the next context is computed.  Because the algorithms processing
  254.  unit is a 32-bit word and it is determined to work on words in
  255.  little endian byte order we perhaps have to change the byte order
  256.  before the computation.  To reduce the work for the next steps
  257.  we store the swapped words in the array CORRECT_WORDS.  */
  258. #define OP(a, b, c, d, s, T)
  259.       do
  260.         {
  261.   a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T;
  262.   ++words;
  263.   CYCLIC (a, s);
  264.   a += b;
  265.         }
  266.       while (0)
  267.       /* It is unfortunate that C does not provide an operator for
  268.  cyclic rotation.  Hope the C compiler is smart enough.  */
  269. #define CYCLIC(w, s) (w = (w << s) | (w >> (32 - s)))
  270.       /* Before we start, one word to the strange constants.
  271.  They are defined in RFC 1321 as
  272.  T[i] = (int) (4294967296.0 * fabs (sin (i))), i=1..64
  273.        */
  274.       /* Round 1.  */
  275.       OP (A, B, C, D,  7, 0xd76aa478);
  276.       OP (D, A, B, C, 12, 0xe8c7b756);
  277.       OP (C, D, A, B, 17, 0x242070db);
  278.       OP (B, C, D, A, 22, 0xc1bdceee);
  279.       OP (A, B, C, D,  7, 0xf57c0faf);
  280.       OP (D, A, B, C, 12, 0x4787c62a);
  281.       OP (C, D, A, B, 17, 0xa8304613);
  282.       OP (B, C, D, A, 22, 0xfd469501);
  283.       OP (A, B, C, D,  7, 0x698098d8);
  284.       OP (D, A, B, C, 12, 0x8b44f7af);
  285.       OP (C, D, A, B, 17, 0xffff5bb1);
  286.       OP (B, C, D, A, 22, 0x895cd7be);
  287.       OP (A, B, C, D,  7, 0x6b901122);
  288.       OP (D, A, B, C, 12, 0xfd987193);
  289.       OP (C, D, A, B, 17, 0xa679438e);
  290.       OP (B, C, D, A, 22, 0x49b40821);
  291.       /* For the second to fourth round we have the possibly swapped words
  292.  in CORRECT_WORDS.  Redefine the macro to take an additional first
  293.  argument specifying the function to use.  */
  294. #undef OP
  295. #define OP(f, a, b, c, d, k, s, T)
  296.       do 
  297. {
  298.   a += f (b, c, d) + correct_words[k] + T;
  299.   CYCLIC (a, s);
  300.   a += b;
  301. }
  302.       while (0)
  303.       /* Round 2.  */
  304.       OP (FG, A, B, C, D,  1,  5, 0xf61e2562);
  305.       OP (FG, D, A, B, C,  6,  9, 0xc040b340);
  306.       OP (FG, C, D, A, B, 11, 14, 0x265e5a51);
  307.       OP (FG, B, C, D, A,  0, 20, 0xe9b6c7aa);
  308.       OP (FG, A, B, C, D,  5,  5, 0xd62f105d);
  309.       OP (FG, D, A, B, C, 10,  9, 0x02441453);
  310.       OP (FG, C, D, A, B, 15, 14, 0xd8a1e681);
  311.       OP (FG, B, C, D, A,  4, 20, 0xe7d3fbc8);
  312.       OP (FG, A, B, C, D,  9,  5, 0x21e1cde6);
  313.       OP (FG, D, A, B, C, 14,  9, 0xc33707d6);
  314.       OP (FG, C, D, A, B,  3, 14, 0xf4d50d87);
  315.       OP (FG, B, C, D, A,  8, 20, 0x455a14ed);
  316.       OP (FG, A, B, C, D, 13,  5, 0xa9e3e905);
  317.       OP (FG, D, A, B, C,  2,  9, 0xfcefa3f8);
  318.       OP (FG, C, D, A, B,  7, 14, 0x676f02d9);
  319.       OP (FG, B, C, D, A, 12, 20, 0x8d2a4c8a);
  320.       /* Round 3.  */
  321.       OP (FH, A, B, C, D,  5,  4, 0xfffa3942);
  322.       OP (FH, D, A, B, C,  8, 11, 0x8771f681);
  323.       OP (FH, C, D, A, B, 11, 16, 0x6d9d6122);
  324.       OP (FH, B, C, D, A, 14, 23, 0xfde5380c);
  325.       OP (FH, A, B, C, D,  1,  4, 0xa4beea44);
  326.       OP (FH, D, A, B, C,  4, 11, 0x4bdecfa9);
  327.       OP (FH, C, D, A, B,  7, 16, 0xf6bb4b60);
  328.       OP (FH, B, C, D, A, 10, 23, 0xbebfbc70);
  329.       OP (FH, A, B, C, D, 13,  4, 0x289b7ec6);
  330.       OP (FH, D, A, B, C,  0, 11, 0xeaa127fa);
  331.       OP (FH, C, D, A, B,  3, 16, 0xd4ef3085);
  332.       OP (FH, B, C, D, A,  6, 23, 0x04881d05);
  333.       OP (FH, A, B, C, D,  9,  4, 0xd9d4d039);
  334.       OP (FH, D, A, B, C, 12, 11, 0xe6db99e5);
  335.       OP (FH, C, D, A, B, 15, 16, 0x1fa27cf8);
  336.       OP (FH, B, C, D, A,  2, 23, 0xc4ac5665);
  337.       /* Round 4.  */
  338.       OP (FI, A, B, C, D,  0,  6, 0xf4292244);
  339.       OP (FI, D, A, B, C,  7, 10, 0x432aff97);
  340.       OP (FI, C, D, A, B, 14, 15, 0xab9423a7);
  341.       OP (FI, B, C, D, A,  5, 21, 0xfc93a039);
  342.       OP (FI, A, B, C, D, 12,  6, 0x655b59c3);
  343.       OP (FI, D, A, B, C,  3, 10, 0x8f0ccc92);
  344.       OP (FI, C, D, A, B, 10, 15, 0xffeff47d);
  345.       OP (FI, B, C, D, A,  1, 21, 0x85845dd1);
  346.       OP (FI, A, B, C, D,  8,  6, 0x6fa87e4f);
  347.       OP (FI, D, A, B, C, 15, 10, 0xfe2ce6e0);
  348.       OP (FI, C, D, A, B,  6, 15, 0xa3014314);
  349.       OP (FI, B, C, D, A, 13, 21, 0x4e0811a1);
  350.       OP (FI, A, B, C, D,  4,  6, 0xf7537e82);
  351.       OP (FI, D, A, B, C, 11, 10, 0xbd3af235);
  352.       OP (FI, C, D, A, B,  2, 15, 0x2ad7d2bb);
  353.       OP (FI, B, C, D, A,  9, 21, 0xeb86d391);
  354.       /* Add the starting values of the context.  */
  355.       A += A_save;
  356.       B += B_save;
  357.       C += C_save;
  358.       D += D_save;
  359.     }
  360.   /* Put checksum in context given as argument.  */
  361.   ctx->A = A;
  362.   ctx->B = B;
  363.   ctx->C = C;
  364.   ctx->D = D;
  365. }
  366. #ifdef _LIBC
  367. /* Define weak aliases.  */
  368. # undef md5_init_ctx
  369. weak_alias (__md5_init_ctx, md5_init_ctx)
  370. # undef md5_process_block
  371. weak_alias (__md5_process_block, md5_process_block)
  372. # undef md5_process_bytes
  373. weak_alias (__md5_process_bytes, md5_process_bytes)
  374. # undef md5_finish_ctx
  375. weak_alias (__md5_finish_ctx, md5_finish_ctx)
  376. # undef md5_read_ctx
  377. weak_alias (__md5_read_ctx, md5_read_ctx)
  378. # undef md5_stream
  379. weak_alias (__md5_stream, md5_stream)
  380. # undef md5_buffer
  381. weak_alias (__md5_buffer, md5_buffer)
  382. #endif