MD5

 #include   <stdio.h>  
  #include   <time.h>  
  #include   <string.h>  
   
  typedef   unsigned   char   *pointer;  
  typedef   unsigned   short   int   uint2;  
  typedef   unsigned   long   int   uint4;  
   
  typedef   struct    
  {  
  uint4   state[4];  
  uint4   count[2];  
  unsigned   char   buffer[64];  
  }   md5_ctx;  
   
  void   md5init(md5_ctx   *);  
  void   md5update(md5_ctx   *,   unsigned   char   *,   unsigned   int);  
  void   md5final(unsigned   char   [16],   md5_ctx   *);  
   
  #define   s11   7  
  #define   s12   12  
  #define   s13   17  
  #define   s14   22  
  #define   s21   5  
  #define   s22   9  
  #define   s23   14  
  #define   s24   20  
  #define   s31   4  
  #define   s32   11  
  #define   s33   16  
  #define   s34   23  
  #define   s41   6  
  #define   s42   10  
  #define   s43   15  
  #define   s44   21  
   
  static   unsigned   char   padding[64]   =   {  
      0x80,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,  
      0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,  
      0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0  
  };  
   
  #define   f(x,   y,   z)   (((x)   &   (y))   |   ((~x)   &   (z)))  
  #define   g(x,   y,   z)   (((x)   &   (z))   |   ((y)   &   (~z)))  
  #define   h(x,   y,   z)   ((x)   ^   (y)   ^   (z))  
  #define   i(x,   y,   z)   ((y)   ^   ((x)   |   (~z)))  
   
  #define   rotate_left(x,   n)   (((x)   <<   (n))   |   ((x)   >>   (32-(n))))  
   
  #define   ff(a,   b,   c,   d,   x,   s,   ac)   {     (a)   +=   f   ((b),   (c),   (d))   +   (x)   +   (uint4)(ac);     (a)   =   rotate_left   ((a),   (s));     (a)   +=   (b);       }  
  #define   gg(a,   b,   c,   d,   x,   s,   ac)   {     (a)   +=   g   ((b),   (c),   (d))   +   (x)   +   (uint4)(ac);     (a)   =   rotate_left   ((a),   (s));     (a)   +=   (b);       }  
  #define   hh(a,   b,   c,   d,   x,   s,   ac)   {     (a)   +=   h   ((b),   (c),   (d))   +   (x)   +   (uint4)(ac);     (a)   =   rotate_left   ((a),   (s));     (a)   +=   (b);       }  
  #define   ii(a,   b,   c,   d,   x,   s,   ac)   {     (a)   +=   i   ((b),   (c),   (d))   +   (x)   +   (uint4)(ac);     (a)   =   rotate_left   ((a),   (s));     (a)   +=   (b);   }  
   
   
  inline   void   encode(unsigned   char   *output,   uint4   *input,   unsigned   int   len)  
  {  
  unsigned   int   i,   j;  
   
  for   (i   =   0,   j   =   0;   j   <   len;   i++,   j   +=   4)   {  
  output[j]   =   (unsigned   char)(input[i]   &   0xff);  
  output[j+1]   =   (unsigned   char)((input[i]   >>   8)   &   0xff);  
  output[j+2]   =   (unsigned   char)((input[i]   >>   16)   &   0xff);  
  output[j+3]   =   (unsigned   char)((input[i]   >>   24)   &   0xff);  
  }  
  }  
   
  inline   void   decode(uint4   *output,   unsigned   char   *input,   unsigned   int   len)  
  {  
  unsigned   int   i,   j;  
   
  for   (i   =   0,   j   =   0;   j   <   len;   i++,   j   +=   4)  
  output[i]   =   ((uint4)input[j])   |   (((uint4)input[j+1])   <<   8)   |  
  (((uint4)input[j+2])   <<   16)   |   (((uint4)input[j+3])   <<   24);  
  }  
   
  inline   void   md5transform   (uint4   state[4],   unsigned   char   block[64])  
  {  
  uint4   a   =   state[0],   b   =   state[1],   c   =   state[2],   d   =   state[3],   x[16];  
  decode   (x,   block,   64);  
  ff   (a,   b,   c,   d,   x[   0],   s11,   0xd76aa478);   /*   1   */  
  ff   (d,   a,   b,   c,   x[   1],   s12,   0xe8c7b756);   /*   2   */  
  ff   (c,   d,   a,   b,   x[   2],   s13,   0x242070db);   /*   3   */  
  ff   (b,   c,   d,   a,   x[   3],   s14,   0xc1bdceee);   /*   4   */  
  ff   (a,   b,   c,   d,   x[   4],   s11,   0xf57c0faf);   /*   5   */  
  ff   (d,   a,   b,   c,   x[   5],   s12,   0x4787c62a);   /*   6   */  
  ff   (c,   d,   a,   b,   x[   6],   s13,   0xa8304613);   /*   7   */  
  ff   (b,   c,   d,   a,   x[   7],   s14,   0xfd469501);   /*   8   */  
  ff   (a,   b,   c,   d,   x[   8],   s11,   0x698098d8);   /*   9   */  
  ff   (d,   a,   b,   c,   x[   9],   s12,   0x8b44f7af);   /*   10   */  
  ff   (c,   d,   a,   b,   x[10],   s13,   0xffff5bb1);   /*   11   */  
  ff   (b,   c,   d,   a,   x[11],   s14,   0x895cd7be);   /*   12   */  
  ff   (a,   b,   c,   d,   x[12],   s11,   0x6b901122);   /*   13   */  
  ff   (d,   a,   b,   c,   x[13],   s12,   0xfd987193);   /*   14   */  
  ff   (c,   d,   a,   b,   x[14],   s13,   0xa679438e);   /*   15   */  
  ff   (b,   c,   d,   a,   x[15],   s14,   0x49b40821);   /*   16   */  
  gg   (a,   b,   c,   d,   x[   1],   s21,   0xf61e2562);   /*   17   */  
  gg   (d,   a,   b,   c,   x[   6],   s22,   0xc040b340);   /*   18   */  
  gg   (c,   d,   a,   b,   x[11],   s23,   0x265e5a51);   /*   19   */  
  gg   (b,   c,   d,   a,   x[   0],   s24,   0xe9b6c7aa);   /*   20   */  
  gg   (a,   b,   c,   d,   x[   5],   s21,   0xd62f105d);   /*   21   */  
  gg   (d,   a,   b,   c,   x[10],   s22,     0x2441453);   /*   22   */  
  gg   (c,   d,   a,   b,   x[15],   s23,   0xd8a1e681);   /*   23   */  
  gg   (b,   c,   d,   a,   x[   4],   s24,   0xe7d3fbc8);   /*   24   */  
  gg   (a,   b,   c,   d,   x[   9],   s21,   0x21e1cde6);   /*   25   */  
  gg   (d,   a,   b,   c,   x[14],   s22,   0xc33707d6);   /*   26   */  
  gg   (c,   d,   a,   b,   x[   3],   s23,   0xf4d50d87);   /*   27   */  
  gg   (b,   c,   d,   a,   x[   8],   s24,   0x455a14ed);   /*   28   */  
  gg   (a,   b,   c,   d,   x[13],   s21,   0xa9e3e905);   /*   29   */  
  gg   (d,   a,   b,   c,   x[   2],   s22,   0xfcefa3f8);   /*   30   */  
  gg   (c,   d,   a,   b,   x[   7],   s23,   0x676f02d9);   /*   31   */  
  gg   (b,   c,   d,   a,   x[12],   s24,   0x8d2a4c8a);   /*   32   */  
  hh   (a,   b,   c,   d,   x[   5],   s31,   0xfffa3942);   /*   33   */  
  hh   (d,   a,   b,   c,   x[   8],   s32,   0x8771f681);   /*   34   */  
  hh   (c,   d,   a,   b,   x[11],   s33,   0x6d9d6122);   /*   35   */  
  hh   (b,   c,   d,   a,   x[14],   s34,   0xfde5380c);   /*   36   */  
  hh   (a,   b,   c,   d,   x[   1],   s31,   0xa4beea44);   /*   37   */  
  hh   (d,   a,   b,   c,   x[   4],   s32,   0x4bdecfa9);   /*   38   */  
  hh   (c,   d,   a,   b,   x[   7],   s33,   0xf6bb4b60);   /*   39   */  
  hh   (b,   c,   d,   a,   x[10],   s34,   0xbebfbc70);   /*   40   */  
  hh   (a,   b,   c,   d,   x[13],   s31,   0x289b7ec6);   /*   41   */  
  hh   (d,   a,   b,   c,   x[   0],   s32,   0xeaa127fa);   /*   42   */  
  hh   (c,   d,   a,   b,   x[   3],   s33,   0xd4ef3085);   /*   43   */  
  hh   (b,   c,   d,   a,   x[   6],   s34,     0x4881d05);   /*   44   */  
  hh   (a,   b,   c,   d,   x[   9],   s31,   0xd9d4d039);   /*   45   */  
  hh   (d,   a,   b,   c,   x[12],   s32,   0xe6db99e5);   /*   46   */  
  hh   (c,   d,   a,   b,   x[15],   s33,   0x1fa27cf8);   /*   47   */  
  hh   (b,   c,   d,   a,   x[   2],   s34,   0xc4ac5665);   /*   48   */  
  ii   (a,   b,   c,   d,   x[   0],   s41,   0xf4292244);   /*   49   */  
  ii   (d,   a,   b,   c,   x[   7],   s42,   0x432aff97);   /*   50   */  
  ii   (c,   d,   a,   b,   x[14],   s43,   0xab9423a7);   /*   51   */  
  ii   (b,   c,   d,   a,   x[   5],   s44,   0xfc93a039);   /*   52   */  
  ii   (a,   b,   c,   d,   x[12],   s41,   0x655b59c3);   /*   53   */  
  ii   (d,   a,   b,   c,   x[   3],   s42,   0x8f0ccc92);   /*   54   */  
  ii   (c,   d,   a,   b,   x[10],   s43,   0xffeff47d);   /*   55   */  
  ii   (b,   c,   d,   a,   x[   1],   s44,   0x85845dd1);   /*   56   */  
  ii   (a,   b,   c,   d,   x[   8],   s41,   0x6fa87e4f);   /*   57   */  
  ii   (d,   a,   b,   c,   x[15],   s42,   0xfe2ce6e0);   /*   58   */  
  ii   (c,   d,   a,   b,   x[   6],   s43,   0xa3014314);   /*   59   */  
  ii   (b,   c,   d,   a,   x[13],   s44,   0x4e0811a1);   /*   60   */  
  ii   (a,   b,   c,   d,   x[   4],   s41,   0xf7537e82);   /*   61   */  
  ii   (d,   a,   b,   c,   x[11],   s42,   0xbd3af235);   /*   62   */  
  ii   (c,   d,   a,   b,   x[   2],   s43,   0x2ad7d2bb);   /*   63   */  
  ii   (b,   c,   d,   a,   x[   9],   s44,   0xeb86d391);   /*   64   */  
  state[0]   +=   a;  
  state[1]   +=   b;  
  state[2]   +=   c;  
  state[3]   +=   d;  
  memset   ((pointer)x,   0,   sizeof   (x));  
  }  
   
  inline   void   md5init(md5_ctx   *context)  
  {  
      context->count[0]   =   context->count[1]   =   0;  
      context->state[0]   =   0x67452301;  
      context->state[1]   =   0xefcdab89;  
      context->state[2]   =   0x98badcfe;  
      context->state[3]   =   0x10325476;  
  }  
   
  inline   void   md5update(md5_ctx   *context,   unsigned   char   *input,   unsigned   int   inputlen)  
  {  
  unsigned   int   i,   index,   partlen;  
   
  index   =   (unsigned   int)((context->count[0]   >>   3)   &   0x3f);  
  if   ((context->count[0]   +=   ((uint4)inputlen   <<   3))  
  <   ((uint4)inputlen   <<   3))  
  context->count[1]++;  
  context->count[1]   +=   ((uint4)inputlen   >>   29);  
   
  partlen   =   64   -   index;  
   
  if   (inputlen   >=   partlen)   {  
  memcpy((pointer)&context->buffer[index],   (pointer)input,   partlen);  
  md5transform(context->state,   context->buffer);  
   
  for   (i   =   partlen;   i   +   63   <   inputlen;   i   +=   64)  
  md5transform   (context->state,   &input[i]);  
  index   =   0;  
  }  
  else  
  i   =   0;  
   
  memcpy((pointer)&context->buffer[index],   (pointer)&input[i],   inputlen-i);  
  }  
   
  inline   void   md5final(unsigned   char   digest[16],   md5_ctx   *context)  
  {  
  unsigned   char   bits[8];  
  unsigned   int   index,   padlen;  
   
  encode   (bits,   context->count,   8);  
  index   =   (unsigned   int)((context->count[0]   >>   3)   &   0x3f);  
  padlen   =   (index   <   56)   ?   (56   -   index)   :   (120   -   index);  
  md5update   (context,   padding,   padlen);  
  md5update   (context,   bits,   8);  
  encode   (digest,   context->state,   16);  
  memset   ((pointer)context,   0,   sizeof   (*context));  
  }  
   
  void   md5digest(char   *pszinput,   unsigned   long   ninputsize,   char   *pszoutput)  
  {  
  md5_ctx   context;  
  unsigned   int   len   =   strlen   (pszinput);  
   
  md5init   (&context);  
  md5update   (&context,   (unsigned   char   *)pszinput,   len);  
  md5final   ((unsigned   char   *)pszoutput,   &context);  
  }  
   
  int   main   (int   argc,   char   *argv[])  
  {  
  char   szdigest[16];  
   
  char   *pszstring   =   "abce";  
   
  md5digest(pszstring,   strlen(pszstring),   szdigest);  
   
  return   (0);  
  }.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值