hmac_md5.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * DOCSIS configuration file encoder.
  3. * Copyright (c) 2001 Cornel Ciocirlan, ctrl@users.sourceforge.net.
  4. * Copyright (c) 2002, 2003 Evvolve Media SRL, office@evvolve.com
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. *
  20. * DOCSIS is a registered trademark of Cablelabs, http://www.cablelabs.com
  21. */
  22. #include <string.h>
  23. #include <stdio.h>
  24. #include "md5.h"
  25. /*
  26. * debugging function
  27. * print the MD5 digest found in the arg buffer
  28. */
  29. void md5_print_digest ( unsigned char *digest )
  30. {
  31. int j;
  32. /* TODO check that the buffer actually contains 16 chars ... */
  33. printf (" --- MD5 DIGEST: 0x");
  34. for (j=0;j<16;j++)
  35. printf ("%02x", digest[j] );
  36. printf("\n");
  37. }
  38. /*
  39. ** Function: hmac_md5
  40. ** Mostly cut & paste from RFC 2104
  41. */
  42. /* unsigned char* text; pointer to data stream */
  43. /* int text_len; length of data stream */
  44. /* unsigned char* key; pointer to authentication key */
  45. /* int key_len; length of authentication key */
  46. /* unsigned char* digest; caller digest to be filled in */
  47. void
  48. hmac_md5(unsigned char *text, int text_len, unsigned char *key, size_t key_len, unsigned char *digest)
  49. {
  50. MD5_CTX context;
  51. unsigned char k_ipad[65]; /* inner padding -
  52. * key XORd with ipad
  53. */
  54. unsigned char k_opad[65]; /* outer padding -
  55. * key XORd with opad
  56. */
  57. unsigned char tk[16];
  58. int i;
  59. unsigned char tmpdigest[16];
  60. /* if key is longer than 64 bytes reset it to key=MD5(key) */
  61. if (key_len > 64) {
  62. MD5_CTX tctx;
  63. MD5Init(&tctx);
  64. MD5Update(&tctx, key, key_len);
  65. MD5Final(tmpdigest,&tctx);
  66. memcpy (tk, tmpdigest, 16);
  67. key = tk;
  68. key_len = 16;
  69. }
  70. /*
  71. * the HMAC_MD5 transform looks like:
  72. *
  73. * MD5(K XOR opad, MD5(K XOR ipad, text))
  74. *
  75. * where K is an n byte key
  76. * ipad is the byte 0x36 repeated 64 times
  77. * opad is the byte 0x5c repeated 64 times
  78. * and text is the data being protected
  79. */
  80. /* start out by storing key in pads */
  81. memset ( k_ipad, 0, sizeof k_ipad);
  82. memset ( k_opad, 0, sizeof k_opad);
  83. memcpy ( k_ipad, key, key_len);
  84. memcpy ( k_opad, key, key_len);
  85. /* XOR key with ipad and opad values */
  86. for (i=0; i<64; i++) {
  87. k_ipad[i] ^= 0x36;
  88. k_opad[i] ^= 0x5c;
  89. }
  90. /*
  91. * perform inner MD5
  92. */
  93. MD5Init(&context); /* init context for 1st
  94. * pass */
  95. MD5Update(&context, k_ipad, 64); /* start with inner pad */
  96. MD5Update(&context, text, text_len); /* then text of datagram */
  97. MD5Final(digest, &context); /* finish up 1st pass */
  98. /*
  99. * perform outer MD5
  100. */
  101. MD5Init(&context); /* init context for 2nd
  102. * pass */
  103. MD5Update(&context, k_opad, 64); /* start with outer pad */
  104. MD5Update(&context, digest, 16); /* then results of 1st
  105. * hash */
  106. MD5Final(digest,&context); /* finish up 2nd pass */
  107. }