2 * Copyright (c) 1995 - 2001 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 __RCSID("$Heimdal: md4.c 17445 2006-05-05 10:37:46Z lha $"
44 #define A m->counter[0]
45 #define B m->counter[1]
46 #define C m->counter[2]
47 #define D m->counter[3]
51 MD4_Init (struct md4
*m
)
61 #define F(x,y,z) CRAYFIX((x & y) | (~x & z))
62 #define G(x,y,z) ((x & y) | (x & z) | (y & z))
63 #define H(x,y,z) (x ^ y ^ z)
65 #define DOIT(a,b,c,d,k,s,i,OP) \
66 a = cshift(a + OP(b,c,d) + X[k] + i, s)
68 #define DO1(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,F)
69 #define DO2(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,G)
70 #define DO3(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,H)
73 calc (struct md4
*m
, uint32_t *data
)
75 uint32_t AA
, BB
, CC
, DD
;
101 DO1(C
,D
,A
,B
,14,11,0);
102 DO1(B
,C
,D
,A
,15,19,0);
106 DO2(A
,B
,C
,D
,0,3,0x5A827999);
107 DO2(D
,A
,B
,C
,4,5,0x5A827999);
108 DO2(C
,D
,A
,B
,8,9,0x5A827999);
109 DO2(B
,C
,D
,A
,12,13,0x5A827999);
111 DO2(A
,B
,C
,D
,1,3,0x5A827999);
112 DO2(D
,A
,B
,C
,5,5,0x5A827999);
113 DO2(C
,D
,A
,B
,9,9,0x5A827999);
114 DO2(B
,C
,D
,A
,13,13,0x5A827999);
116 DO2(A
,B
,C
,D
,2,3,0x5A827999);
117 DO2(D
,A
,B
,C
,6,5,0x5A827999);
118 DO2(C
,D
,A
,B
,10,9,0x5A827999);
119 DO2(B
,C
,D
,A
,14,13,0x5A827999);
121 DO2(A
,B
,C
,D
,3,3,0x5A827999);
122 DO2(D
,A
,B
,C
,7,5,0x5A827999);
123 DO2(C
,D
,A
,B
,11,9,0x5A827999);
124 DO2(B
,C
,D
,A
,15,13,0x5A827999);
128 DO3(A
,B
,C
,D
,0,3,0x6ED9EBA1);
129 DO3(D
,A
,B
,C
,8,9,0x6ED9EBA1);
130 DO3(C
,D
,A
,B
,4,11,0x6ED9EBA1);
131 DO3(B
,C
,D
,A
,12,15,0x6ED9EBA1);
133 DO3(A
,B
,C
,D
,2,3,0x6ED9EBA1);
134 DO3(D
,A
,B
,C
,10,9,0x6ED9EBA1);
135 DO3(C
,D
,A
,B
,6,11,0x6ED9EBA1);
136 DO3(B
,C
,D
,A
,14,15,0x6ED9EBA1);
138 DO3(A
,B
,C
,D
,1,3,0x6ED9EBA1);
139 DO3(D
,A
,B
,C
,9,9,0x6ED9EBA1);
140 DO3(C
,D
,A
,B
,5,11,0x6ED9EBA1);
141 DO3(B
,C
,D
,A
,13,15,0x6ED9EBA1);
143 DO3(A
,B
,C
,D
,3,3,0x6ED9EBA1);
144 DO3(D
,A
,B
,C
,11,9,0x6ED9EBA1);
145 DO3(C
,D
,A
,B
,7,11,0x6ED9EBA1);
146 DO3(B
,C
,D
,A
,15,15,0x6ED9EBA1);
155 * From `Performance analysis of MD5' by Joseph D. Touch <touch@isi.edu>
158 #if defined(WORDS_BIGENDIAN)
159 static inline uint32_t
160 swap_uint32_t (uint32_t t
)
162 uint32_t temp1
, temp2
;
164 temp1
= cshift(t
, 16);
169 return temp1
| temp2
;
179 MD4_Update (struct md4
*m
, const void *v
, size_t len
)
181 const unsigned char *p
= v
;
182 size_t old_sz
= m
->sz
[0];
186 if (m
->sz
[0] < old_sz
)
188 offset
= (old_sz
/ 8) % 64;
190 size_t l
= min(len
, 64 - offset
);
191 memcpy(m
->save
+ offset
, p
, l
);
196 #if defined(WORDS_BIGENDIAN)
198 uint32_t current
[16];
199 struct x32
*u
= (struct x32
*)m
->save
;
200 for(i
= 0; i
< 8; i
++){
201 current
[2*i
+0] = swap_uint32_t(u
[i
].a
);
202 current
[2*i
+1] = swap_uint32_t(u
[i
].b
);
206 calc(m
, (uint32_t*)m
->save
);
214 MD4_Final (void *res
, struct md4
*m
)
216 unsigned char zeros
[72];
217 unsigned offset
= (m
->sz
[0] / 8) % 64;
218 unsigned int dstart
= (120 - offset
- 1) % 64 + 1;
221 memset (zeros
+ 1, 0, sizeof(zeros
) - 1);
222 zeros
[dstart
+0] = (m
->sz
[0] >> 0) & 0xff;
223 zeros
[dstart
+1] = (m
->sz
[0] >> 8) & 0xff;
224 zeros
[dstart
+2] = (m
->sz
[0] >> 16) & 0xff;
225 zeros
[dstart
+3] = (m
->sz
[0] >> 24) & 0xff;
226 zeros
[dstart
+4] = (m
->sz
[1] >> 0) & 0xff;
227 zeros
[dstart
+5] = (m
->sz
[1] >> 8) & 0xff;
228 zeros
[dstart
+6] = (m
->sz
[1] >> 16) & 0xff;
229 zeros
[dstart
+7] = (m
->sz
[1] >> 24) & 0xff;
230 MD4_Update (m
, zeros
, dstart
+ 8);
233 unsigned char *r
= (unsigned char *)res
;
235 for (i
= 0; i
< 4; ++i
) {
236 r
[4*i
] = m
->counter
[i
] & 0xFF;
237 r
[4*i
+1] = (m
->counter
[i
] >> 8) & 0xFF;
238 r
[4*i
+2] = (m
->counter
[i
] >> 16) & 0xFF;
239 r
[4*i
+3] = (m
->counter
[i
] >> 24) & 0xFF;
245 uint32_t *r
= (uint32_t *)res
;
247 for (i
= 0; i
< 4; ++i
)
248 r
[i
] = swap_uint32_t (m
->counter
[i
]);