home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 217 / DPCS0306DVD.ISO / Toolkit / Internet / FileZilla / Server / FileZilla_Server-0.9.11.exe / source / misc / md5.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2003-07-23  |  13.3 KB  |  549 lines

  1. // MD5.CC - source code for the C++/object oriented translation and 
  2. //          modification of MD5.
  3.  
  4. // Translation and modification (c) 1995 by Mordechai T. Abzug 
  5.  
  6. // This translation/ modification is provided "as is," without express or 
  7. // implied warranty of any kind.
  8.  
  9. // The translator/ modifier does not claim (1) that MD5 will do what you think 
  10. // it does; (2) that this translation/ modification is accurate; or (3) that 
  11. // this software is "merchantible."  (Language for this disclaimer partially 
  12. // copied from the disclaimer below).
  13.  
  14. /* based on:
  15.  
  16.    MD5C.C - RSA Data Security, Inc., MD5 message-digest algorithm
  17.    MDDRIVER.C - test driver for MD2, MD4 and MD5
  18.  
  19.  
  20.    Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
  21. rights reserved.
  22.  
  23. License to copy and use this software is granted provided that it
  24. is identified as the "RSA Data Security, Inc. MD5 Message-Digest
  25. Algorithm" in all material mentioning or referencing this software
  26. or this function.
  27.  
  28. License is also granted to make and use derivative works provided
  29. that such works are identified as "derived from the RSA Data
  30. Security, Inc. MD5 Message-Digest Algorithm" in all material
  31. mentioning or referencing the derived work.
  32.  
  33. RSA Data Security, Inc. makes no representations concerning either
  34. the merchantability of this software or the suitability of this
  35. software for any particular purpose. It is provided "as is"
  36. without express or implied warranty of any kind.
  37.  
  38. These notices must be retained in any copies of any part of this
  39. documentation and/or software.
  40.  
  41.  */
  42.  
  43.  
  44.  
  45. #include "stdafx.h"
  46.  
  47.  
  48. #include "md5.h"
  49.  
  50. #include <assert.h>
  51. #include <iostream>
  52.  
  53.  
  54.  
  55.  
  56. // MD5 simple initialization method
  57.  
  58. MD5::MD5(){
  59.  
  60.   init();
  61.  
  62. }
  63.  
  64.  
  65.  
  66.  
  67. // MD5 block update operation. Continues an MD5 message-digest
  68. // operation, processing another message block, and updating the
  69. // context.
  70.  
  71. void MD5::update (uint1 *input, uint4 input_length) {
  72.  
  73.   uint4 input_index, buffer_index;
  74.   uint4 buffer_space;                // how much space is left in buffer
  75.  
  76.   if (finalized){  // so we can't update!
  77.     cerr << "MD5::update:  Can't update a finalized digest!" << endl;
  78.     return;
  79.   }
  80.  
  81.   // Compute number of bytes mod 64
  82.   buffer_index = (unsigned int)((count[0] >> 3) & 0x3F);
  83.  
  84.   // Update number of bits
  85.   if (  (count[0] += ((uint4) input_length << 3))<((uint4) input_length << 3) )
  86.     count[1]++;
  87.  
  88.   count[1] += ((uint4)input_length >> 29);
  89.  
  90.  
  91.   buffer_space = 64 - buffer_index;  // how much space is left in buffer
  92.  
  93.   // Transform as many times as possible.
  94.   if (input_length >= buffer_space) { // ie. we have enough to fill the buffer
  95.     // fill the rest of the buffer and transform
  96.     memcpy (buffer + buffer_index, input, buffer_space);
  97.     transform (buffer);
  98.  
  99.     // now, transform each 64-byte piece of the input, bypassing the buffer
  100.     for (input_index = buffer_space; input_index + 63 < input_length; 
  101.      input_index += 64)
  102.       transform (input+input_index);
  103.  
  104.     buffer_index = 0;  // so we can buffer remaining
  105.   }
  106.   else
  107.     input_index=0;     // so we can buffer the whole input
  108.  
  109.  
  110.   // and here we do the buffering:
  111.   memcpy(buffer+buffer_index, input+input_index, input_length-input_index);
  112. }
  113.  
  114.  
  115.  
  116. // MD5 update for files.
  117. // Like above, except that it works on files (and uses above as a primitive.)
  118.  
  119. void MD5::update(FILE *file)
  120. {
  121.     
  122.     unsigned char buffer[1024];
  123.     
  124.     int len = fread(buffer, 1, 1024, file);
  125.     
  126.     while (len)
  127.     {
  128.         update(buffer, len);
  129.         len = fread(buffer, 1, 1024, file);
  130.     }
  131.         
  132.     fclose (file);
  133.         
  134. }
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141. // MD5 update for istreams.
  142. // Like update for files; see above.
  143.  
  144. void MD5::update(istream& stream){
  145.  
  146.   unsigned char buffer[1024];
  147.   int len;
  148.  
  149.   while (stream.good()){
  150.     stream.read((char *)buffer, 1024); // note that return value of read is unusable.
  151.     len=stream.gcount();
  152.     update(buffer, len);
  153.   }
  154.  
  155. }
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162. // MD5 update for ifstreams.
  163. // Like update for files; see above.
  164.  
  165. void MD5::update(ifstream& stream){
  166.  
  167.   unsigned char buffer[1024];
  168.   int len;
  169.  
  170.   while (stream.good()){
  171.     stream.read((char *)buffer, 1024); // note that return value of read is unusable.
  172.     len=stream.gcount();
  173.     update(buffer, len);
  174.   }
  175.  
  176. }
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183. // MD5 finalization. Ends an MD5 message-digest operation, writing the
  184. // the message digest and zeroizing the context.
  185.  
  186.  
  187. void MD5::finalize (){
  188.  
  189.   unsigned char bits[8];
  190.   unsigned int index, padLen;
  191.   static uint1 PADDING[64]={
  192.     0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  193.     0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  194.     0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  195.     };
  196.  
  197.   if (finalized){
  198.     cerr << "MD5::finalize:  Already finalized this digest!" << endl;
  199.     return;
  200.   }
  201.  
  202.   // Save number of bits
  203.   encode (bits, count, 8);
  204.  
  205.   // Pad out to 56 mod 64.
  206.   index = (uint4) ((count[0] >> 3) & 0x3f);
  207.   padLen = (index < 56) ? (56 - index) : (120 - index);
  208.   update (PADDING, padLen);
  209.  
  210.   // Append length (before padding)
  211.   update (bits, 8);
  212.  
  213.   // Store state in digest
  214.   encode (digest, state, 16);
  215.  
  216.   // Zeroize sensitive information
  217.   memset (buffer, 0, sizeof(*buffer));
  218.  
  219.   finalized=1;
  220.  
  221. }
  222.  
  223.  
  224.  
  225.  
  226. MD5::MD5(FILE *file){
  227.  
  228.   init();  // must be called be all constructors
  229.   update(file);
  230.   finalize ();
  231. }
  232.  
  233.  
  234.  
  235.  
  236. MD5::MD5(istream& stream){
  237.  
  238.   init();  // must called by all constructors
  239.   update (stream);
  240.   finalize();
  241. }
  242.  
  243.  
  244.  
  245. MD5::MD5(ifstream& stream){
  246.  
  247.   init();  // must called by all constructors
  248.   update (stream);
  249.   finalize();
  250. }
  251.  
  252.  
  253.  
  254. unsigned char *MD5::raw_digest(){
  255.  
  256.   uint1 *s = new uint1[16];
  257.  
  258.   if (!finalized){
  259.     cerr << "MD5::raw_digest:  Can't get digest if you haven't "<<
  260.       "finalized the digest!" <<endl;
  261.     return ( (unsigned char*) "");
  262.   }
  263.  
  264.   memcpy(s, digest, 16);
  265.   return s;
  266. }
  267.  
  268.  
  269.  
  270. char *MD5::hex_digest(){
  271.  
  272.   int i;
  273.   char *s= new char[33];
  274.  
  275.   if (!finalized){
  276.     cerr << "MD5::hex_digest:  Can't get digest if you haven't "<<
  277.       "finalized the digest!" <<endl;
  278.     return "";
  279.   }
  280.  
  281.   for (i=0; i<16; i++)
  282.     sprintf(s+i*2, "%02x", digest[i]);
  283.  
  284.   s[32]='\0';
  285.  
  286.   return s;
  287. }
  288.  
  289.  
  290.  
  291.  
  292.  
  293. ostream& operator<<(ostream &stream, MD5 context){
  294.  
  295.   stream << context.hex_digest();
  296.   return stream;
  297. }
  298.  
  299.  
  300.  
  301.  
  302. // PRIVATE METHODS:
  303.  
  304.  
  305.  
  306. void MD5::init(){
  307.   finalized=0;  // we just started!
  308.  
  309.   // Nothing counted, so count=0
  310.   count[0] = 0;
  311.   count[1] = 0;
  312.  
  313.   // Load magic initialization constants.
  314.   state[0] = 0x67452301;
  315.   state[1] = 0xefcdab89;
  316.   state[2] = 0x98badcfe;
  317.   state[3] = 0x10325476;
  318. }
  319.  
  320.  
  321.  
  322. // Constants for MD5Transform routine.
  323. // Although we could use C++ style constants, defines are actually better,
  324. // since they let us easily evade scope clashes.
  325.  
  326. #define S11 7
  327. #define S12 12
  328. #define S13 17
  329. #define S14 22
  330. #define S21 5
  331. #define S22 9
  332. #define S23 14
  333. #define S24 20
  334. #define S31 4
  335. #define S32 11
  336. #define S33 16
  337. #define S34 23
  338. #define S41 6
  339. #define S42 10
  340. #define S43 15
  341. #define S44 21
  342.  
  343.  
  344.  
  345.  
  346. // MD5 basic transformation. Transforms state based on block.
  347. void MD5::transform (uint1 block[64]){
  348.  
  349.   uint4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
  350.  
  351.   decode (x, block, 64);
  352.  
  353.   assert(!finalized);  // not just a user error, since the method is private
  354.  
  355.   /* Round 1 */
  356.   FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */
  357.   FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */
  358.   FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */
  359.   FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */
  360.   FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */
  361.   FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */
  362.   FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */
  363.   FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 */
  364.   FF (a, b, c, d, x[ 8], S11, 0x698098d8); /* 9 */
  365.   FF (d, a, b, c, x[ 9], S12, 0x8b44f7af); /* 10 */
  366.   FF (c, d, a, b, x[10], S13, 0xffff5bb1); /* 11 */
  367.   FF (b, c, d, a, x[11], S14, 0x895cd7be); /* 12 */
  368.   FF (a, b, c, d, x[12], S11, 0x6b901122); /* 13 */
  369.   FF (d, a, b, c, x[13], S12, 0xfd987193); /* 14 */
  370.   FF (c, d, a, b, x[14], S13, 0xa679438e); /* 15 */
  371.   FF (b, c, d, a, x[15], S14, 0x49b40821); /* 16 */
  372.  
  373.  /* Round 2 */
  374.   GG (a, b, c, d, x[ 1], S21, 0xf61e2562); /* 17 */
  375.   GG (d, a, b, c, x[ 6], S22, 0xc040b340); /* 18 */
  376.   GG (c, d, a, b, x[11], S23, 0x265e5a51); /* 19 */
  377.   GG (b, c, d, a, x[ 0], S24, 0xe9b6c7aa); /* 20 */
  378.   GG (a, b, c, d, x[ 5], S21, 0xd62f105d); /* 21 */
  379.   GG (d, a, b, c, x[10], S22,  0x2441453); /* 22 */
  380.   GG (c, d, a, b, x[15], S23, 0xd8a1e681); /* 23 */
  381.   GG (b, c, d, a, x[ 4], S24, 0xe7d3fbc8); /* 24 */
  382.   GG (a, b, c, d, x[ 9], S21, 0x21e1cde6); /* 25 */
  383.   GG (d, a, b, c, x[14], S22, 0xc33707d6); /* 26 */
  384.   GG (c, d, a, b, x[ 3], S23, 0xf4d50d87); /* 27 */
  385.   GG (b, c, d, a, x[ 8], S24, 0x455a14ed); /* 28 */
  386.   GG (a, b, c, d, x[13], S21, 0xa9e3e905); /* 29 */
  387.   GG (d, a, b, c, x[ 2], S22, 0xfcefa3f8); /* 30 */
  388.   GG (c, d, a, b, x[ 7], S23, 0x676f02d9); /* 31 */
  389.   GG (b, c, d, a, x[12], S24, 0x8d2a4c8a); /* 32 */
  390.  
  391.   /* Round 3 */
  392.   HH (a, b, c, d, x[ 5], S31, 0xfffa3942); /* 33 */
  393.   HH (d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */
  394.   HH (c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */
  395.   HH (b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */
  396.   HH (a, b, c, d, x[ 1], S31, 0xa4beea44); /* 37 */
  397.   HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */
  398.   HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60); /* 39 */
  399.   HH (b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */
  400.   HH (a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */
  401.   HH (d, a, b, c, x[ 0], S32, 0xeaa127fa); /* 42 */
  402.   HH (c, d, a, b, x[ 3], S33, 0xd4ef3085); /* 43 */
  403.   HH (b, c, d, a, x[ 6], S34,  0x4881d05); /* 44 */
  404.   HH (a, b, c, d, x[ 9], S31, 0xd9d4d039); /* 45 */
  405.   HH (d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */
  406.   HH (c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */
  407.   HH (b, c, d, a, x[ 2], S34, 0xc4ac5665); /* 48 */
  408.  
  409.   /* Round 4 */
  410.   II (a, b, c, d, x[ 0], S41, 0xf4292244); /* 49 */
  411.   II (d, a, b, c, x[ 7], S42, 0x432aff97); /* 50 */
  412.   II (c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */
  413.   II (b, c, d, a, x[ 5], S44, 0xfc93a039); /* 52 */
  414.   II (a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */
  415.   II (d, a, b, c, x[ 3], S42, 0x8f0ccc92); /* 54 */
  416.   II (c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */
  417.   II (b, c, d, a, x[ 1], S44, 0x85845dd1); /* 56 */
  418.   II (a, b, c, d, x[ 8], S41, 0x6fa87e4f); /* 57 */
  419.   II (d, a, b, c, x[15], S42, 0xfe2ce6e0); /* 58 */
  420.   II (c, d, a, b, x[ 6], S43, 0xa3014314); /* 59 */
  421.   II (b, c, d, a, x[13], S44, 0x4e0811a1); /* 60 */
  422.   II (a, b, c, d, x[ 4], S41, 0xf7537e82); /* 61 */
  423.   II (d, a, b, c, x[11], S42, 0xbd3af235); /* 62 */
  424.   II (c, d, a, b, x[ 2], S43, 0x2ad7d2bb); /* 63 */
  425.   II (b, c, d, a, x[ 9], S44, 0xeb86d391); /* 64 */
  426.  
  427.   state[0] += a;
  428.   state[1] += b;
  429.   state[2] += c;
  430.   state[3] += d;
  431.  
  432.   // Zeroize sensitive information.
  433.   memset ( (uint1 *) x, 0, sizeof(x));
  434.  
  435. }
  436.  
  437.  
  438.  
  439. // Encodes input (UINT4) into output (unsigned char). Assumes len is
  440. // a multiple of 4.
  441. void MD5::encode (uint1 *output, uint4 *input, uint4 len) {
  442.  
  443.   unsigned int i, j;
  444.  
  445.   for (i = 0, j = 0; j < len; i++, j += 4) {
  446.     output[j]   = (uint1)  (input[i] & 0xff);
  447.     output[j+1] = (uint1) ((input[i] >> 8) & 0xff);
  448.     output[j+2] = (uint1) ((input[i] >> 16) & 0xff);
  449.     output[j+3] = (uint1) ((input[i] >> 24) & 0xff);
  450.   }
  451. }
  452.  
  453.  
  454.  
  455.  
  456. // Decodes input (unsigned char) into output (UINT4). Assumes len is
  457. // a multiple of 4.
  458. void MD5::decode (uint4 *output, uint1 *input, uint4 len){
  459.  
  460.   unsigned int i, j;
  461.  
  462.   for (i = 0, j = 0; j < len; i++, j += 4)
  463.     output[i] = ((uint4)input[j]) | (((uint4)input[j+1]) << 8) |
  464.       (((uint4)input[j+2]) << 16) | (((uint4)input[j+3]) << 24);
  465. }
  466.  
  467.  
  468.  
  469.  
  470.  
  471. // Note: Replace "for loop" with standard memcpy if possible.
  472. void MD5::memcpy (uint1 *output, uint1 *input, uint4 len){
  473.  
  474.   unsigned int i;
  475.  
  476.   for (i = 0; i < len; i++)
  477.     output[i] = input[i];
  478. }
  479.  
  480.  
  481.  
  482. // Note: Replace "for loop" with standard memset if possible.
  483. void MD5::memset (uint1 *output, uint1 value, uint4 len){
  484.  
  485.   unsigned int i;
  486.  
  487.   for (i = 0; i < len; i++)
  488.     output[i] = value;
  489. }
  490.  
  491.  
  492.  
  493. // ROTATE_LEFT rotates x left n bits.
  494.  
  495. inline unsigned int MD5::rotate_left  (uint4 x, uint4 n){
  496.   return (x << n) | (x >> (32-n))  ;
  497. }
  498.  
  499.  
  500.  
  501.  
  502. // F, G, H and I are basic MD5 functions.
  503.  
  504. inline unsigned int MD5::F            (uint4 x, uint4 y, uint4 z){
  505.   return (x & y) | (~x & z);
  506. }
  507.  
  508. inline unsigned int MD5::G            (uint4 x, uint4 y, uint4 z){
  509.   return (x & z) | (y & ~z);
  510. }
  511.  
  512. inline unsigned int MD5::H            (uint4 x, uint4 y, uint4 z){
  513.   return x ^ y ^ z;
  514. }
  515.  
  516. inline unsigned int MD5::I            (uint4 x, uint4 y, uint4 z){
  517.   return y ^ (x | ~z);
  518. }
  519.  
  520.  
  521.  
  522. // FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
  523. // Rotation is separate from addition to prevent recomputation.
  524.  
  525.  
  526. inline void MD5::FF(uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, 
  527.             uint4  s, uint4 ac){
  528.  a += F(b, c, d) + x + ac;
  529.  a = rotate_left (a, s) +b;
  530. }
  531.  
  532. inline void MD5::GG(uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, 
  533.             uint4 s, uint4 ac){
  534.  a += G(b, c, d) + x + ac;
  535.  a = rotate_left (a, s) +b;
  536. }
  537.  
  538. inline void MD5::HH(uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, 
  539.             uint4 s, uint4 ac){
  540.  a += H(b, c, d) + x + ac;
  541.  a = rotate_left (a, s) +b;
  542. }
  543.  
  544. inline void MD5::II(uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, 
  545.                  uint4 s, uint4 ac){
  546.  a += I(b, c, d) + x + ac;
  547.  a = rotate_left (a, s) +b;
  548. }
  549.