md5.c

Go to the documentation of this file.
00001 
00006 /*
00007  * This code implements the MD5 message-digest algorithm.
00008  * The algorithm is due to Ron Rivest.  This code was
00009  * written by Colin Plumb in 1993, no copyright is claimed.
00010  * This code is in the public domain; do with it what you wish.
00011  *
00012  * Equivalent code is available from RSA Data Security, Inc.
00013  * This code has been tested against that, and is equivalent,
00014  * except that you don't need to include two pages of legalese
00015  * with every copy.
00016  *
00017  * To compute the message digest of a chunk of bytes, declare an
00018  * MD5Context structure, pass it to MD5Init, call MD5Update as
00019  * needed on buffers full of bytes, and then call MD5Final, which
00020  * will fill a supplied 16-byte array with the digest.
00021  */
00022 
00023 #include "common.h"
00024 
00025 typedef struct MD5Context {
00026     uint32_t buf[4];
00027     uint32_t bits[2];
00028     unsigned char in[64];
00029 } MD5_CTX;
00030 
00031 #ifndef BIG_ENDIAN
00032     #define byteReverse(buf, len)   /* Nothing */
00033 #else
00034     static void byteReverse(unsigned char *buf, unsigned longs);
00035 
00039     static void byteReverse(unsigned char *buf, unsigned longs)
00040     {
00041         uint32_t t;
00042         do {
00043             t = (uint32_t)
00044             ((unsigned) buf[3] << 8 | buf[2]) << 16 |
00045             ((unsigned) buf[1] << 8 | buf[0]);
00046             *(uint32_t *) buf = t;
00047             buf += 4;
00048         } while (--longs);
00049     }
00050 #endif /* BIG_ENDIAN */
00051 
00056 static void MD5Init(struct MD5Context *ctx)
00057 {
00058     ctx->buf[0] = 0x67452301;
00059     ctx->buf[1] = 0xefcdab89;
00060     ctx->buf[2] = 0x98badcfe;
00061     ctx->buf[3] = 0x10325476;
00062 
00063     ctx->bits[0] = 0;
00064     ctx->bits[1] = 0;
00065 }
00066 /* The four core functions - F1 is optimized somewhat */
00067 
00068 /* #define F1(x, y, z) (x & y | ~x & z) */
00069 #define F1(x, y, z) (z ^ (x & (y ^ z)))
00070 #define F2(x, y, z) F1(z, x, y)
00071 #define F3(x, y, z) (x ^ y ^ z)
00072 #define F4(x, y, z) (y ^ (x | ~z))
00073 
00074 /* This is the central step in the MD5 algorithm. */
00075 #define MD5STEP(f, w, x, y, z, data, s) \
00076     ( w += f(x, y, z) + data,  w = w<<s | w>>(32-s),  w += x )
00077 
00083 static void MD5Transform(uint32_t buf[4], uint32_t const in[16])
00084 {
00085     register uint32_t a, b, c, d;
00086 
00087     a = buf[0];
00088     b = buf[1];
00089     c = buf[2];
00090     d = buf[3];
00091 
00092     MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
00093     MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
00094     MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
00095     MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
00096     MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
00097     MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
00098     MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
00099     MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
00100     MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7);
00101     MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12);
00102     MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
00103     MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
00104     MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
00105     MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
00106     MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
00107     MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);
00108 
00109     MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
00110     MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
00111     MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
00112     MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
00113     MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
00114     MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
00115     MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
00116     MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
00117     MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5);
00118     MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
00119     MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14);
00120     MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20);
00121     MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
00122     MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);
00123     MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14);
00124     MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
00125 
00126     MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4);
00127     MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11);
00128     MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
00129     MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
00130     MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4);
00131     MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);
00132     MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);
00133     MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
00134     MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
00135     MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11);
00136     MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16);
00137     MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23);
00138     MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4);
00139     MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
00140     MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
00141     MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23);
00142 
00143     MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6);
00144     MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10);
00145     MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
00146     MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21);
00147     MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
00148     MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);
00149     MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
00150     MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21);
00151     MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);
00152     MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
00153     MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15);
00154     MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
00155     MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6);
00156     MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
00157     MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);
00158     MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21);
00159 
00160     buf[0] += a;
00161     buf[1] += b;
00162     buf[2] += c;
00163     buf[3] += d;
00164 }
00165 
00170 static void MD5Update(struct MD5Context *ctx, unsigned char const *buf, unsigned len)
00171 {
00172     uint32_t t;
00173 
00174     /* Update bitcount */
00175 
00176     t = ctx->bits[0];
00177     if ((ctx->bits[0] = t + ((uint32_t) len << 3)) < t)
00178     ctx->bits[1]++;     /* Carry from low to high */
00179     ctx->bits[1] += len >> 29;
00180 
00181     t = (t >> 3) & 0x3f;    /* Bytes already in shsInfo->data */
00182 
00183     /* Handle any leading odd-sized chunks */
00184 
00185     if (t) {
00186         unsigned char *p = (unsigned char *) ctx->in + t;
00187 
00188         t = 64 - t;
00189         if (len < t) {
00190             memcpy(p, buf, len);
00191             return;
00192         }
00193         memcpy(p, buf, t);
00194         byteReverse(ctx->in, 16);
00195         MD5Transform(ctx->buf, (uint32_t *) ctx->in);
00196         buf += t;
00197         len -= t;
00198     }
00199     /* Process data in 64-byte chunks */
00200 
00201     while (len >= 64) {
00202         memcpy(ctx->in, buf, 64);
00203         byteReverse(ctx->in, 16);
00204         MD5Transform(ctx->buf, (uint32_t *) ctx->in);
00205         buf += 64;
00206         len -= 64;
00207     }
00208 
00209     /* Handle any remaining bytes of data. */
00210 
00211     memcpy(ctx->in, buf, len);
00212 }
00213 
00214 
00219 static void MD5Final(struct MD5Context *ctx, unsigned char *digest)
00220 {
00221     unsigned count;
00222     unsigned char *p;
00223 
00224     /* Compute number of bytes mod 64 */
00225     count = (ctx->bits[0] >> 3) & 0x3F;
00226 
00227     /* Set the first char of padding to 0x80.  This is safe since there is
00228     always at least one byte free */
00229     p = ctx->in + count;
00230     *p++ = 0x80;
00231 
00232     /* Bytes of padding needed to make 64 bytes */
00233     count = 64 - 1 - count;
00234 
00235     /* Pad out to 56 mod 64 */
00236     if (count < 8) {
00237         /* Two lots of padding:  Pad the first block to 64 bytes */
00238         memset(p, 0, count);
00239         byteReverse(ctx->in, 16);
00240         MD5Transform(ctx->buf, (uint32_t *) ctx->in);
00241 
00242         /* Now fill the next block with 56 bytes */
00243         memset(ctx->in, 0, 56);
00244     } else {
00245         /* Pad block to 56 bytes */
00246         memset(p, 0, count - 8);
00247     }
00248     byteReverse(ctx->in, 14);
00249 
00250     /* Append length in bits and transform */
00251     ((uint32_t *) ctx->in)[14] = ctx->bits[0];
00252     ((uint32_t *) ctx->in)[15] = ctx->bits[1];
00253 
00254     MD5Transform(ctx->buf, (uint32_t *) ctx->in);
00255     byteReverse((unsigned char *) ctx->buf, 4);
00256 
00257     if (digest!=NULL)
00258         memcpy(digest, ctx->buf, 16);
00259     memset(ctx, 0, sizeof(ctx));    /* In case it's sensitive */
00260 }
00261 
00268 char *Com_MD5File (const char *fn, int length)
00269 {
00270     static char final[33] = {"unknown"};
00271     unsigned char digest[16] = {""};
00272     qFILE f;
00273     MD5_CTX md5;
00274     char buffer[2048];
00275     int i;
00276     int filelen = 0;
00277     int r = 0;
00278     int total = 0;
00279 
00280     filelen = FS_OpenFile(fn, &f, FILE_READ);
00281     if (filelen < 1)
00282         return final;
00283 
00284     if (filelen < length || !length)
00285         length = filelen;
00286 
00287     MD5Init(&md5);
00288 
00289     for (;;) {
00290         r = FS_Read(buffer, sizeof(buffer), &f);
00291         if (r < 1)
00292             break;
00293         if (r + total > length)
00294             r = length - total;
00295         total += r;
00296         MD5Update(&md5 , (unsigned char *)buffer, r);
00297         if (r < sizeof(buffer) || total >= length)
00298             break;
00299     }
00300     FS_CloseFile(&f);
00301     MD5Final(&md5, digest);
00302 
00303     final[0] = '\0';
00304 
00305     for (i = 0; i < 16; i++)
00306         Q_strcat(final, va("%02X", digest[i]), sizeof(final));
00307 
00308     return final;
00309 }

Generated by  doxygen 1.6.2