]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - tools/quake2/common/md4.c
netradiant: strip 16-bit png to 8-bit, fix #153
[xonotic/netradiant.git] / tools / quake2 / common / md4.c
1 /*
2     mdfour.c
3
4     An implementation of MD4 designed for use in the samba SMB
5     authentication protocol
6
7     Copyright (C) 1997-1998  Andrew Tridgell
8
9     This program is free software; you can redistribute it and/or
10     modify it under the terms of the GNU General Public License
11     as published by the Free Software Foundation; either version 2
12     of the License, or (at your option) any later version.
13
14     This program is distributed in the hope that it will be useful,
15     but WITHOUT ANY WARRANTY; without even the implied warranty of
16     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
18     See the GNU General Public License for more details.
19
20     You should have received a copy of the GNU General Public License
21     along with this program; if not, write to:
22
23         Free Software Foundation, Inc.
24         59 Temple Place - Suite 330
25         Boston, MA  02111-1307, USA
26
27     $Id: mdfour.c 7689 2007-11-12 14:28:40Z divverent $
28  */
29
30 #include <string.h>     /* XoXus: needed for memset call */
31 #include "md4.h"
32
33 /* NOTE: This code makes no attempt to be fast!
34
35    It assumes that a int is at least 32 bits long
36  */
37
38 static struct mdfour *m;
39
40 #define F( X,Y,Z ) ( ( (X)&( Y ) ) | ( ( ~( X ) ) & ( Z ) ) )
41 #define G( X,Y,Z ) ( ( (X)&( Y ) ) | ( (X)&( Z ) ) | ( (Y)&( Z ) ) )
42 #define H( X,Y,Z ) ( ( X ) ^ ( Y ) ^ ( Z ) )
43 #ifdef LARGE_INT32
44 #define lshift( x,s ) ( ( ( ( x ) << ( s ) ) & 0xFFFFFFFF ) | ( ( ( x ) >> ( 32 - ( s ) ) ) & 0xFFFFFFFF ) )
45 #else
46 #define lshift( x,s ) ( ( ( x ) << ( s ) ) | ( ( x ) >> ( 32 - ( s ) ) ) )
47 #endif
48
49 #define ROUND1( a,b,c,d,k,s ) a = lshift( a + F( b,c,d ) + X[k], s )
50 #define ROUND2( a,b,c,d,k,s ) a = lshift( a + G( b,c,d ) + X[k] + 0x5A827999,s )
51 #define ROUND3( a,b,c,d,k,s ) a = lshift( a + H( b,c,d ) + X[k] + 0x6ED9EBA1,s )
52
53 /* this applies md4 to 64 byte chunks */
54 static void mdfour64( uint32 *M ){
55         int j;
56         uint32 AA, BB, CC, DD;
57         uint32 X[16];
58         uint32 A,B,C,D;
59
60         for ( j = 0; j < 16; j++ )
61                 X[j] = M[j];
62
63         A = m->A; B = m->B; C = m->C; D = m->D;
64         AA = A; BB = B; CC = C; DD = D;
65
66         ROUND1( A,B,C,D,  0,  3 );  ROUND1( D,A,B,C,  1,  7 );
67         ROUND1( C,D,A,B,  2, 11 );  ROUND1( B,C,D,A,  3, 19 );
68         ROUND1( A,B,C,D,  4,  3 );  ROUND1( D,A,B,C,  5,  7 );
69         ROUND1( C,D,A,B,  6, 11 );  ROUND1( B,C,D,A,  7, 19 );
70         ROUND1( A,B,C,D,  8,  3 );  ROUND1( D,A,B,C,  9,  7 );
71         ROUND1( C,D,A,B, 10, 11 );  ROUND1( B,C,D,A, 11, 19 );
72         ROUND1( A,B,C,D, 12,  3 );  ROUND1( D,A,B,C, 13,  7 );
73         ROUND1( C,D,A,B, 14, 11 );  ROUND1( B,C,D,A, 15, 19 );
74
75         ROUND2( A,B,C,D,  0,  3 );  ROUND2( D,A,B,C,  4,  5 );
76         ROUND2( C,D,A,B,  8,  9 );  ROUND2( B,C,D,A, 12, 13 );
77         ROUND2( A,B,C,D,  1,  3 );  ROUND2( D,A,B,C,  5,  5 );
78         ROUND2( C,D,A,B,  9,  9 );  ROUND2( B,C,D,A, 13, 13 );
79         ROUND2( A,B,C,D,  2,  3 );  ROUND2( D,A,B,C,  6,  5 );
80         ROUND2( C,D,A,B, 10,  9 );  ROUND2( B,C,D,A, 14, 13 );
81         ROUND2( A,B,C,D,  3,  3 );  ROUND2( D,A,B,C,  7,  5 );
82         ROUND2( C,D,A,B, 11,  9 );  ROUND2( B,C,D,A, 15, 13 );
83
84         ROUND3( A,B,C,D,  0,  3 );  ROUND3( D,A,B,C,  8,  9 );
85         ROUND3( C,D,A,B,  4, 11 );  ROUND3( B,C,D,A, 12, 15 );
86         ROUND3( A,B,C,D,  2,  3 );  ROUND3( D,A,B,C, 10,  9 );
87         ROUND3( C,D,A,B,  6, 11 );  ROUND3( B,C,D,A, 14, 15 );
88         ROUND3( A,B,C,D,  1,  3 );  ROUND3( D,A,B,C,  9,  9 );
89         ROUND3( C,D,A,B,  5, 11 );  ROUND3( B,C,D,A, 13, 15 );
90         ROUND3( A,B,C,D,  3,  3 );  ROUND3( D,A,B,C, 11,  9 );
91         ROUND3( C,D,A,B,  7, 11 );  ROUND3( B,C,D,A, 15, 15 );
92
93         A += AA; B += BB; C += CC; D += DD;
94
95 #ifdef LARGE_INT32
96         A &= 0xFFFFFFFF; B &= 0xFFFFFFFF;
97         C &= 0xFFFFFFFF; D &= 0xFFFFFFFF;
98 #endif
99
100         for ( j = 0; j < 16; j++ )
101                 X[j] = 0;
102
103         m->A = A; m->B = B; m->C = C; m->D = D;
104 }
105
106 static void copy64( uint32 *M, unsigned char *in ){
107         int i;
108
109         for ( i = 0; i < 16; i++ )
110                 M[i] = ( in[i * 4 + 3] << 24 ) | ( in[i * 4 + 2] << 16 ) |
111                            ( in[i * 4 + 1] << 8 ) | ( in[i * 4 + 0] << 0 );
112 }
113
114 static void copy4( unsigned char *out,uint32 x ){
115         out[0] = x & 0xFF;
116         out[1] = ( x >> 8 ) & 0xFF;
117         out[2] = ( x >> 16 ) & 0xFF;
118         out[3] = ( x >> 24 ) & 0xFF;
119 }
120
121 void mdfour_begin( struct mdfour *md ){
122         md->A = 0x67452301;
123         md->B = 0xefcdab89;
124         md->C = 0x98badcfe;
125         md->D = 0x10325476;
126         md->totalN = 0;
127 }
128
129
130 static void mdfour_tail( unsigned char *in, int n ){
131         unsigned char buf[128];
132         uint32 M[16];
133         uint32 b;
134
135         m->totalN += n;
136
137         b = m->totalN * 8;
138
139         memset( buf, 0, 128 );
140         if ( n ) {
141                 memcpy( buf, in, n );
142         }
143         buf[n] = 0x80;
144
145         if ( n <= 55 ) {
146                 copy4( buf + 56, b );
147                 copy64( M, buf );
148                 mdfour64( M );
149         }
150         else {
151                 copy4( buf + 120, b );
152                 copy64( M, buf );
153                 mdfour64( M );
154                 copy64( M, buf + 64 );
155                 mdfour64( M );
156         }
157 }
158
159 void mdfour_update( struct mdfour *md, unsigned char *in, int n ){
160         uint32 M[16];
161
162 // start of edit by Forest 'LordHavoc' Hale
163 // commented out to prevent crashing when length is 0
164 //      if (n == 0) mdfour_tail(in, n);
165 // end of edit by Forest 'LordHavoc' Hale
166
167         m = md;
168
169         while ( n >= 64 ) {
170                 copy64( M, in );
171                 mdfour64( M );
172                 in += 64;
173                 n -= 64;
174                 m->totalN += 64;
175         }
176
177         mdfour_tail( in, n );
178 }
179
180
181 void mdfour_result( struct mdfour *md, unsigned char *out ){
182         m = md;
183
184         copy4( out, m->A );
185         copy4( out + 4, m->B );
186         copy4( out + 8, m->C );
187         copy4( out + 12, m->D );
188 }
189
190
191 void mdfour( unsigned char *out, unsigned char *in, int n ){
192         struct mdfour md;
193         mdfour_begin( &md );
194         mdfour_update( &md, in, n );
195         mdfour_result( &md, out );
196 }
197
198 ///////////////////////////////////////////////////////////////
199 //      MD4-based checksum utility functions
200 //
201 //      Copyright (C) 2000       Jeff Teunissen <d2deek@pmail.net>
202 //
203 //      Author: Jeff Teunissen  <d2deek@pmail.net>
204 //      Date: 01 Jan 2000
205
206 unsigned Com_BlockChecksum( void *buffer, int length ){
207         int digest[4];
208         unsigned val;
209
210         mdfour( (unsigned char *) digest, (unsigned char *) buffer, length );
211
212         val = digest[0] ^ digest[1] ^ digest[2] ^ digest[3];
213
214         return val;
215 }
216
217 void Com_BlockFullChecksum( void *buffer, int len, unsigned char *outbuf ){
218         mdfour( outbuf, (unsigned char *) buffer, len );
219 }