1 /* md5.c - MD5 Message-Digest Algorithm
 
   2  *      Copyright (C) 1995, 1996, 1998, 1999 Free Software Foundation, Inc.
 
   4  * according to the definition of MD5 in RFC 1321 from April 1992.
 
   5  * NOTE: This is *not* the same file as the one from glibc.
 
   7  * This program is free software; you can redistribute it and/or modify it
 
   8  * under the terms of the GNU General Public License as published by the
 
   9  * Free Software Foundation; either version 2, or (at your option) any
 
  12  * This program is distributed in the hope that it will be useful,
 
  13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  15  * GNU General Public License for more details.
 
  17  * You should have received a copy of the GNU General Public License
 
  18  * along with this program; if not, write to the Free Software Foundation,
 
  19  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
  21  * $Id: md5.c,v 1.3 2003/10/04 10:21:41 noodles Exp $
 
  23 /* Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.  */
 
  24 /* heavily modified for GnuPG by <werner.koch@guug.de> */
 
  25 /* Heavily modified for CryptNET KeyServer by V. Alex Brennen <vab@cryptnet.net> */
 
  28  * ""                  D4 1D 8C D9 8F 00 B2 04  E9 80 09 98 EC F8 42 7E
 
  29  * "a"                 0C C1 75 B9 C0 F1 B6 A8  31 C3 99 E2 69 77 26 61
 
  30  * "abc                90 01 50 98 3C D2 4F B0  D6 96 3F 7D 28 E1 7F 72
 
  31  * "message digest"    F9 6B 69 7D 7C B7 93 8D  52 5A 2F 31 AA F1 61 D0
 
  36 void md5_init( MD5_CONTEXT *ctx )
 
  47 /* These are the four functions used in the four steps of the MD5 algorithm
 
  48    and defined in the RFC 1321.  The first function is a little bit optimized
 
  49    (as found in Colin Plumbs public domain implementation).  */
 
  50 /* #define FF(b, c, d) ((b & c) | (~b & d)) */
 
  51 #define FF(b, c, d) (d ^ (b & (c ^ d)))
 
  52 #define FG(b, c, d) FF (d, b, c)
 
  53 #define FH(b, c, d) (b ^ c ^ d)
 
  54 #define FI(b, c, d) (c ^ (b | ~d))
 
  55 #define DIM(v) (sizeof(v)/sizeof((v)[0]))
 
  58  * transform n*64 bytes
 
  60 static void transform( MD5_CONTEXT *ctx, unsigned char *data )
 
  62     unsigned int correct_words[16];
 
  63     unsigned int A = ctx->A;
 
  64     unsigned int B = ctx->B;
 
  65     unsigned int C = ctx->C;
 
  66     unsigned int D = ctx->D;
 
  67     unsigned int *cwp = correct_words;
 
  69     memcpy( correct_words, data, 64 );
 
  72 #define OP(a, b, c, d, s, T)                                        \
 
  75       a += FF (b, c, d) + (*cwp++) + T;             \
 
  81     /* Before we start, one word about the strange constants.
 
  82        They are defined in RFC 1321 as
 
  84        T[i] = (int) (4294967296.0 * fabs (sin (i))), i=1..64
 
  88     OP (A, B, C, D,  7, 0xd76aa478);
 
  89     OP (D, A, B, C, 12, 0xe8c7b756);
 
  90     OP (C, D, A, B, 17, 0x242070db);
 
  91     OP (B, C, D, A, 22, 0xc1bdceee);
 
  92     OP (A, B, C, D,  7, 0xf57c0faf);
 
  93     OP (D, A, B, C, 12, 0x4787c62a);
 
  94     OP (C, D, A, B, 17, 0xa8304613);
 
  95     OP (B, C, D, A, 22, 0xfd469501);
 
  96     OP (A, B, C, D,  7, 0x698098d8);
 
  97     OP (D, A, B, C, 12, 0x8b44f7af);
 
  98     OP (C, D, A, B, 17, 0xffff5bb1);
 
  99     OP (B, C, D, A, 22, 0x895cd7be);
 
 100     OP (A, B, C, D,  7, 0x6b901122);
 
 101     OP (D, A, B, C, 12, 0xfd987193);
 
 102     OP (C, D, A, B, 17, 0xa679438e);
 
 103     OP (B, C, D, A, 22, 0x49b40821);
 
 106 #define OP(f, a, b, c, d, k, s, T)  \
 
 109         a += f (b, c, d) + correct_words[k] + T;                      \
 
 116     OP (FG, A, B, C, D,  1,  5, 0xf61e2562);
 
 117     OP (FG, D, A, B, C,  6,  9, 0xc040b340);
 
 118     OP (FG, C, D, A, B, 11, 14, 0x265e5a51);
 
 119     OP (FG, B, C, D, A,  0, 20, 0xe9b6c7aa);
 
 120     OP (FG, A, B, C, D,  5,  5, 0xd62f105d);
 
 121     OP (FG, D, A, B, C, 10,  9, 0x02441453);
 
 122     OP (FG, C, D, A, B, 15, 14, 0xd8a1e681);
 
 123     OP (FG, B, C, D, A,  4, 20, 0xe7d3fbc8);
 
 124     OP (FG, A, B, C, D,  9,  5, 0x21e1cde6);
 
 125     OP (FG, D, A, B, C, 14,  9, 0xc33707d6);
 
 126     OP (FG, C, D, A, B,  3, 14, 0xf4d50d87);
 
 127     OP (FG, B, C, D, A,  8, 20, 0x455a14ed);
 
 128     OP (FG, A, B, C, D, 13,  5, 0xa9e3e905);
 
 129     OP (FG, D, A, B, C,  2,  9, 0xfcefa3f8);
 
 130     OP (FG, C, D, A, B,  7, 14, 0x676f02d9);
 
 131     OP (FG, B, C, D, A, 12, 20, 0x8d2a4c8a);
 
 134     OP (FH, A, B, C, D,  5,  4, 0xfffa3942);
 
 135     OP (FH, D, A, B, C,  8, 11, 0x8771f681);
 
 136     OP (FH, C, D, A, B, 11, 16, 0x6d9d6122);
 
 137     OP (FH, B, C, D, A, 14, 23, 0xfde5380c);
 
 138     OP (FH, A, B, C, D,  1,  4, 0xa4beea44);
 
 139     OP (FH, D, A, B, C,  4, 11, 0x4bdecfa9);
 
 140     OP (FH, C, D, A, B,  7, 16, 0xf6bb4b60);
 
 141     OP (FH, B, C, D, A, 10, 23, 0xbebfbc70);
 
 142     OP (FH, A, B, C, D, 13,  4, 0x289b7ec6);
 
 143     OP (FH, D, A, B, C,  0, 11, 0xeaa127fa);
 
 144     OP (FH, C, D, A, B,  3, 16, 0xd4ef3085);
 
 145     OP (FH, B, C, D, A,  6, 23, 0x04881d05);
 
 146     OP (FH, A, B, C, D,  9,  4, 0xd9d4d039);
 
 147     OP (FH, D, A, B, C, 12, 11, 0xe6db99e5);
 
 148     OP (FH, C, D, A, B, 15, 16, 0x1fa27cf8);
 
 149     OP (FH, B, C, D, A,  2, 23, 0xc4ac5665);
 
 152     OP (FI, A, B, C, D,  0,  6, 0xf4292244);
 
 153     OP (FI, D, A, B, C,  7, 10, 0x432aff97);
 
 154     OP (FI, C, D, A, B, 14, 15, 0xab9423a7);
 
 155     OP (FI, B, C, D, A,  5, 21, 0xfc93a039);
 
 156     OP (FI, A, B, C, D, 12,  6, 0x655b59c3);
 
 157     OP (FI, D, A, B, C,  3, 10, 0x8f0ccc92);
 
 158     OP (FI, C, D, A, B, 10, 15, 0xffeff47d);
 
 159     OP (FI, B, C, D, A,  1, 21, 0x85845dd1);
 
 160     OP (FI, A, B, C, D,  8,  6, 0x6fa87e4f);
 
 161     OP (FI, D, A, B, C, 15, 10, 0xfe2ce6e0);
 
 162     OP (FI, C, D, A, B,  6, 15, 0xa3014314);
 
 163     OP (FI, B, C, D, A, 13, 21, 0x4e0811a1);
 
 164     OP (FI, A, B, C, D,  4,  6, 0xf7537e82);
 
 165     OP (FI, D, A, B, C, 11, 10, 0xbd3af235);
 
 166     OP (FI, C, D, A, B,  2, 15, 0x2ad7d2bb);
 
 167     OP (FI, B, C, D, A,  9, 21, 0xeb86d391);
 
 169     /* Put checksum in context given as argument.  */
 
 178 /* The routine updates the message-digest context to
 
 179  * account for the presence of each of the characters inBuf[0..inLen-1]
 
 180  * in the message whose digest is being computed.
 
 182 void md5_write( MD5_CONTEXT *hd, unsigned char *inbuf, size_t inlen)
 
 184     if( hd->count == 64 ) { /* flush the buffer */
 
 185         transform( hd, hd->buf );
 
 192         for( ; inlen && hd->count < 64; inlen-- )
 
 193             hd->buf[hd->count++] = *inbuf++;
 
 194         md5_write( hd, NULL, 0 );
 
 199     while( inlen >= 64 ) {
 
 200         transform( hd, inbuf );
 
 206     for( ; inlen && hd->count < 64; inlen-- )
 
 207         hd->buf[hd->count++] = *inbuf++;
 
 213 /* The routine final terminates the message-digest computation and
 
 214  * ends with the desired message digest in mdContext->digest[0...15].
 
 215  * The handle is prepared for a new MD5 cycle.
 
 216  * Returns 16 bytes representing the digest.
 
 219 void md5_final( MD5_CONTEXT *hd )
 
 221     unsigned int t, msb, lsb;
 
 224     md5_write(hd, NULL, 0); /* flush */;
 
 228     if( (lsb = t << 6) < t ) /* multiply by 64 to make a byte count */
 
 232     if( (lsb = t + hd->count) < t ) /* add the count */
 
 235     if( (lsb = t << 3) < t ) /* multiply by 8 to make a bit count */
 
 239     if( hd->count < 56 ) { /* enough room */
 
 240         hd->buf[hd->count++] = 0x80; /* pad */
 
 241         while( hd->count < 56 )
 
 242             hd->buf[hd->count++] = 0;  /* pad */
 
 244     else { /* need one extra block */
 
 245         hd->buf[hd->count++] = 0x80; /* pad character */
 
 246         while( hd->count < 64 )
 
 247             hd->buf[hd->count++] = 0;
 
 248         md5_write(hd, NULL, 0);  /* flush */;
 
 249         memset(hd->buf, 0, 56 ); /* fill next block with zeroes */
 
 251     /* append the 64 bit count */
 
 253     hd->buf[57] = lsb >>  8;
 
 254     hd->buf[58] = lsb >> 16;
 
 255     hd->buf[59] = lsb >> 24;
 
 257     hd->buf[61] = msb >>  8;
 
 258     hd->buf[62] = msb >> 16;
 
 259     hd->buf[63] = msb >> 24;
 
 260     transform( hd, hd->buf );
 
 264     /*#define X(a) do { *(u32*)p = hd->##a ; p += 4; } while(0)*/
 
 265     /* Unixware's cpp doesn't like the above construct so we do it his way:
 
 266      * (reported by Allan Clark) */
 
 267     #define X(a) do { *(unsigned int *)p = (*hd).a ; p += 4; } while(0)
 
 276 unsigned char *md5_read(MD5_CONTEXT *hd)