sha1.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:9k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #include "db_config.h"
  2. #ifndef lint
  3. static const char revid[] = "$Id: sha1.c,v 1.13 2002/04/09 13:40:36 sue Exp $";
  4. #endif /* not lint */
  5. /*
  6. SHA-1 in C
  7. By Steve Reid <sreid@sea-to-sky.net>
  8. 100% Public Domain
  9. -----------------
  10. Modified 7/98 
  11. By James H. Brown <jbrown@burgoyne.com>
  12. Still 100% Public Domain
  13. Corrected a problem which generated improper hash values on 16 bit machines
  14. Routine SHA1Update changed from
  15. void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned int
  16. len)
  17. to
  18. void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned
  19. long len)
  20. The 'len' parameter was declared an int which works fine on 32 bit machines.
  21. However, on 16 bit machines an int is too small for the shifts being done
  22. against
  23. it.  This caused the hash function to generate incorrect values if len was
  24. greater than 8191 (8K - 1) due to the 'len << 3' on line 3 of SHA1Update().
  25. Since the file IO in main() reads 16K at a time, any file 8K or larger would
  26. be guaranteed to generate the wrong hash (e.g. Test Vector #3, a million
  27. "a"s).
  28. I also changed the declaration of variables i & j in SHA1Update to 
  29. unsigned long from unsigned int for the same reason.
  30. These changes should make no difference to any 32 bit implementations since
  31. an
  32. int and a long are the same size in those environments.
  33. --
  34. I also corrected a few compiler warnings generated by Borland C.
  35. 1. Added #include <process.h> for exit() prototype
  36. 2. Removed unused variable 'j' in SHA1Final
  37. 3. Changed exit(0) to return(0) at end of main.
  38. ALL changes I made can be located by searching for comments containing 'JHB'
  39. -----------------
  40. Modified 8/98
  41. By Steve Reid <sreid@sea-to-sky.net>
  42. Still 100% public domain
  43. 1- Removed #include <process.h> and used return() instead of exit()
  44. 2- Fixed overwriting of finalcount in SHA1Final() (discovered by Chris Hall)
  45. 3- Changed email address from steve@edmweb.com to sreid@sea-to-sky.net
  46. -----------------
  47. Modified 4/01
  48. By Saul Kravitz <Saul.Kravitz@celera.com>
  49. Still 100% PD
  50. Modified to run on Compaq Alpha hardware.  
  51. */
  52. /*
  53. Test Vectors (from FIPS PUB 180-1)
  54. "abc"
  55.   A9993E36 4706816A BA3E2571 7850C26C 9CD0D89D
  56. "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"
  57.   84983E44 1C3BD26E BAAE4AA1 F95129E5 E54670F1
  58. A million repetitions of "a"
  59.   34AA973C D4C4DAA4 F61EEB2B DBAD2731 6534016F
  60. */
  61. #define SHA1HANDSOFF
  62. #ifndef NO_SYSTEM_INCLUDES
  63. #include <string.h>
  64. #endif
  65. #include "db_int.h"
  66. #include "dbinc/hmac.h"
  67. /* #include <process.h> */ /* prototype for exit() - JHB */
  68. /* Using return() instead of exit() - SWR */
  69. #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
  70. /* blk0() and blk() perform the initial expand. */
  71. /* I got the idea of expanding during the round function from SSLeay */
  72. #define blk0(i) is_bigendian ? block->l[i] : 
  73.     (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) 
  74.     |(rol(block->l[i],8)&0x00FF00FF))
  75. #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] 
  76.     ^block->l[(i+2)&15]^block->l[i&15],1))
  77. /* (R0+R1), R2, R3, R4 are the different operations used in SHA1 */
  78. #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30);
  79. #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30);
  80. #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30);
  81. #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30);
  82. #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30);
  83. #ifdef VERBOSE  /* SAK */
  84. static void __db_SHAPrintContext __P((SHA1_CTX *, char *));
  85. static void
  86. __db_SHAPrintContext(context, msg)
  87. SHA1_CTX *context;
  88. char *msg;
  89. {
  90.   printf("%s (%d,%d) %x %x %x %x %xn",
  91.  msg,
  92.  context->count[0], context->count[1], 
  93.  context->state[0],
  94.  context->state[1],
  95.  context->state[2],
  96.  context->state[3],
  97.  context->state[4]);
  98. }
  99. #endif
  100. /* Hash a single 512-bit block. This is the core of the algorithm. */
  101. /*
  102.  * __db_SHA1Transform --
  103.  * 
  104.  * PUBLIC: void __db_SHA1Transform __P((u_int32_t *, unsigned char *));
  105.  */
  106. void
  107. __db_SHA1Transform(state, buffer)
  108.         u_int32_t *state;
  109.         unsigned char *buffer;
  110. {
  111. u_int32_t a, b, c, d, e;
  112. typedef union {
  113.     unsigned char c[64];
  114.     u_int32_t l[16];
  115. } CHAR64LONG16;
  116. CHAR64LONG16* block;
  117. static int is_bigendian = -1;
  118. #ifdef SHA1HANDSOFF
  119.     unsigned char workspace[64];
  120.     block = (CHAR64LONG16*)workspace;
  121.     memcpy(block, buffer, 64);
  122. #else
  123.     block = (CHAR64LONG16*)buffer;
  124. #endif
  125.     if (is_bigendian == -1)
  126.      is_bigendian = __db_isbigendian();
  127.     /* Copy context->state[] to working vars */
  128.     a = state[0];
  129.     b = state[1];
  130.     c = state[2];
  131.     d = state[3];
  132.     e = state[4];
  133.     /* 4 rounds of 20 operations each. Loop unrolled. */
  134.     R0(a,b,c,d,e, 0); R0(e,a,b,c,d, 1); R0(d,e,a,b,c, 2); R0(c,d,e,a,b, 3);
  135.     R0(b,c,d,e,a, 4); R0(a,b,c,d,e, 5); R0(e,a,b,c,d, 6); R0(d,e,a,b,c, 7);
  136.     R0(c,d,e,a,b, 8); R0(b,c,d,e,a, 9); R0(a,b,c,d,e,10); R0(e,a,b,c,d,11);
  137.     R0(d,e,a,b,c,12); R0(c,d,e,a,b,13); R0(b,c,d,e,a,14); R0(a,b,c,d,e,15);
  138.     R1(e,a,b,c,d,16); R1(d,e,a,b,c,17); R1(c,d,e,a,b,18); R1(b,c,d,e,a,19);
  139.     R2(a,b,c,d,e,20); R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23);
  140.     R2(b,c,d,e,a,24); R2(a,b,c,d,e,25); R2(e,a,b,c,d,26); R2(d,e,a,b,c,27);
  141.     R2(c,d,e,a,b,28); R2(b,c,d,e,a,29); R2(a,b,c,d,e,30); R2(e,a,b,c,d,31);
  142.     R2(d,e,a,b,c,32); R2(c,d,e,a,b,33); R2(b,c,d,e,a,34); R2(a,b,c,d,e,35);
  143.     R2(e,a,b,c,d,36); R2(d,e,a,b,c,37); R2(c,d,e,a,b,38); R2(b,c,d,e,a,39);
  144.     R3(a,b,c,d,e,40); R3(e,a,b,c,d,41); R3(d,e,a,b,c,42); R3(c,d,e,a,b,43);
  145.     R3(b,c,d,e,a,44); R3(a,b,c,d,e,45); R3(e,a,b,c,d,46); R3(d,e,a,b,c,47);
  146.     R3(c,d,e,a,b,48); R3(b,c,d,e,a,49); R3(a,b,c,d,e,50); R3(e,a,b,c,d,51);
  147.     R3(d,e,a,b,c,52); R3(c,d,e,a,b,53); R3(b,c,d,e,a,54); R3(a,b,c,d,e,55);
  148.     R3(e,a,b,c,d,56); R3(d,e,a,b,c,57); R3(c,d,e,a,b,58); R3(b,c,d,e,a,59);
  149.     R4(a,b,c,d,e,60); R4(e,a,b,c,d,61); R4(d,e,a,b,c,62); R4(c,d,e,a,b,63);
  150.     R4(b,c,d,e,a,64); R4(a,b,c,d,e,65); R4(e,a,b,c,d,66); R4(d,e,a,b,c,67);
  151.     R4(c,d,e,a,b,68); R4(b,c,d,e,a,69); R4(a,b,c,d,e,70); R4(e,a,b,c,d,71);
  152.     R4(d,e,a,b,c,72); R4(c,d,e,a,b,73); R4(b,c,d,e,a,74); R4(a,b,c,d,e,75);
  153.     R4(e,a,b,c,d,76); R4(d,e,a,b,c,77); R4(c,d,e,a,b,78); R4(b,c,d,e,a,79);
  154.     /* Add the working vars back into context.state[] */
  155.     state[0] += a;
  156.     state[1] += b;
  157.     state[2] += c;
  158.     state[3] += d;
  159.     state[4] += e;
  160.     /* Wipe variables */
  161.     a = b = c = d = e = 0;
  162. }
  163. /* SHA1Init - Initialize new context */
  164. /*   
  165.  * __db_SHA1Init --
  166.  *      Initialize new context
  167.  *
  168.  * PUBLIC: void __db_SHA1Init __P((SHA1_CTX *));
  169.  */
  170. void
  171. __db_SHA1Init(context)
  172.         SHA1_CTX *context;
  173. {
  174.     /* SHA1 initialization constants */
  175.     context->state[0] = 0x67452301;
  176.     context->state[1] = 0xEFCDAB89;
  177.     context->state[2] = 0x98BADCFE;
  178.     context->state[3] = 0x10325476;
  179.     context->state[4] = 0xC3D2E1F0;
  180.     context->count[0] = context->count[1] = 0;
  181. }
  182. /* Run your data through this. */
  183. /*
  184.  * __db_SHA1Update --
  185.  *      Run your data through this.
  186.  *
  187.  * PUBLIC: void __db_SHA1Update __P((SHA1_CTX *, unsigned char *,
  188.  * PUBLIC:     size_t));
  189.  */
  190. void
  191. __db_SHA1Update(context, data, len)
  192.         SHA1_CTX *context;
  193.         unsigned char *data;
  194.         size_t len;
  195. {
  196. u_int32_t i, j; /* JHB */
  197. #ifdef VERBOSE
  198.     __db_SHAPrintContext(context, "before");
  199. #endif
  200.     j = (context->count[0] >> 3) & 63;
  201.     if ((context->count[0] += (u_int32_t)len << 3) < (len << 3)) context->count[1]++;
  202.     context->count[1] += (u_int32_t)(len >> 29);
  203.     if ((j + len) > 63) {
  204.         memcpy(&context->buffer[j], data, (i = 64-j));
  205.         __db_SHA1Transform(context->state, context->buffer);
  206.         for ( ; i + 63 < len; i += 64) {
  207.             __db_SHA1Transform(context->state, &data[i]);
  208.         }
  209.         j = 0;
  210.     }
  211.     else i = 0;
  212.     memcpy(&context->buffer[j], &data[i], len - i);
  213. #ifdef VERBOSE
  214.     __db_SHAPrintContext(context, "after ");
  215. #endif
  216. }
  217. /* Add padding and return the message digest. */
  218. /*
  219.  * __db_SHA1Final --
  220.  *      Add padding and return the message digest.
  221.  *
  222.  * PUBLIC: void __db_SHA1Final __P((unsigned char *, SHA1_CTX *));
  223.  */
  224. void
  225. __db_SHA1Final(digest, context)
  226.         unsigned char *digest;
  227.         SHA1_CTX *context;
  228. {
  229. u_int32_t i; /* JHB */
  230. unsigned char finalcount[8];
  231.     for (i = 0; i < 8; i++) {
  232.         finalcount[i] = (unsigned char)((context->count[(i >= 4 ? 0 : 1)]
  233.          >> ((3-(i & 3)) * 8) ) & 255);  /* Endian independent */
  234.     }
  235.     __db_SHA1Update(context, (unsigned char *)"200", 1);
  236.     while ((context->count[0] & 504) != 448) {
  237.         __db_SHA1Update(context, (unsigned char *)"", 1);
  238.     }
  239.     __db_SHA1Update(context, finalcount, 8);  /* Should cause a SHA1Transform()
  240. */
  241.     for (i = 0; i < 20; i++) {
  242.         digest[i] = (unsigned char)
  243.          ((context->state[i>>2] >> ((3-(i & 3)) * 8) ) & 255);
  244.     }
  245.     /* Wipe variables */
  246.     i = 0; /* JHB */
  247.     memset(context->buffer, 0, 64);
  248.     memset(context->state, 0, 20);
  249.     memset(context->count, 0, 8);
  250.     memset(finalcount, 0, 8); /* SWR */
  251. #ifdef SHA1HANDSOFF  /* make SHA1Transform overwrite it's own static vars */
  252.     __db_SHA1Transform(context->state, context->buffer);
  253. #endif
  254. }
  255.   
  256. /*************************************************************/