md5.c revision 1.1.1.1.34.1 1 1.1.1.1.34.1 snj /* $NetBSD: md5.c,v 1.1.1.1.34.1 2017/08/20 05:44:18 snj Exp $ */
2 1.1 elric
3 1.1 elric /*
4 1.1 elric * Copyright (c) 1995 - 2001 Kungliga Tekniska Hgskolan
5 1.1 elric * (Royal Institute of Technology, Stockholm, Sweden).
6 1.1 elric * All rights reserved.
7 1.1 elric *
8 1.1 elric * Redistribution and use in source and binary forms, with or without
9 1.1 elric * modification, are permitted provided that the following conditions
10 1.1 elric * are met:
11 1.1 elric *
12 1.1 elric * 1. Redistributions of source code must retain the above copyright
13 1.1 elric * notice, this list of conditions and the following disclaimer.
14 1.1 elric *
15 1.1 elric * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 elric * notice, this list of conditions and the following disclaimer in the
17 1.1 elric * documentation and/or other materials provided with the distribution.
18 1.1 elric *
19 1.1 elric * 3. Neither the name of the Institute nor the names of its contributors
20 1.1 elric * may be used to endorse or promote products derived from this software
21 1.1 elric * without specific prior written permission.
22 1.1 elric *
23 1.1 elric * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24 1.1 elric * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 elric * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 elric * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27 1.1 elric * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 elric * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 elric * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 elric * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 elric * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 elric * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 elric * SUCH DAMAGE.
34 1.1 elric */
35 1.1 elric
36 1.1.1.1.34.1 snj #include <config.h>
37 1.1.1.1.34.1 snj #include <krb5/roken.h>
38 1.1 elric
39 1.1 elric #include "hash.h"
40 1.1 elric #include "md5.h"
41 1.1 elric
42 1.1 elric #define A m->counter[0]
43 1.1 elric #define B m->counter[1]
44 1.1 elric #define C m->counter[2]
45 1.1 elric #define D m->counter[3]
46 1.1 elric #define X data
47 1.1 elric
48 1.1.1.1.34.1 snj int
49 1.1 elric MD5_Init (struct md5 *m)
50 1.1 elric {
51 1.1 elric m->sz[0] = 0;
52 1.1 elric m->sz[1] = 0;
53 1.1 elric D = 0x10325476;
54 1.1 elric C = 0x98badcfe;
55 1.1 elric B = 0xefcdab89;
56 1.1 elric A = 0x67452301;
57 1.1.1.1.34.1 snj return 1;
58 1.1 elric }
59 1.1 elric
60 1.1 elric #define F(x,y,z) CRAYFIX((x & y) | (~x & z))
61 1.1 elric #define G(x,y,z) CRAYFIX((x & z) | (y & ~z))
62 1.1 elric #define H(x,y,z) (x ^ y ^ z)
63 1.1 elric #define I(x,y,z) CRAYFIX(y ^ (x | ~z))
64 1.1 elric
65 1.1 elric #define DOIT(a,b,c,d,k,s,i,OP) \
66 1.1 elric a = b + cshift(a + OP(b,c,d) + X[k] + (i), s)
67 1.1 elric
68 1.1 elric #define DO1(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,F)
69 1.1 elric #define DO2(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,G)
70 1.1 elric #define DO3(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,H)
71 1.1 elric #define DO4(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,I)
72 1.1 elric
73 1.1 elric static inline void
74 1.1 elric calc (struct md5 *m, uint32_t *data)
75 1.1 elric {
76 1.1 elric uint32_t AA, BB, CC, DD;
77 1.1 elric
78 1.1 elric AA = A;
79 1.1 elric BB = B;
80 1.1 elric CC = C;
81 1.1 elric DD = D;
82 1.1 elric
83 1.1 elric /* Round 1 */
84 1.1 elric
85 1.1 elric DO1(A,B,C,D,0,7,0xd76aa478);
86 1.1 elric DO1(D,A,B,C,1,12,0xe8c7b756);
87 1.1 elric DO1(C,D,A,B,2,17,0x242070db);
88 1.1 elric DO1(B,C,D,A,3,22,0xc1bdceee);
89 1.1 elric
90 1.1 elric DO1(A,B,C,D,4,7,0xf57c0faf);
91 1.1 elric DO1(D,A,B,C,5,12,0x4787c62a);
92 1.1 elric DO1(C,D,A,B,6,17,0xa8304613);
93 1.1 elric DO1(B,C,D,A,7,22,0xfd469501);
94 1.1 elric
95 1.1 elric DO1(A,B,C,D,8,7,0x698098d8);
96 1.1 elric DO1(D,A,B,C,9,12,0x8b44f7af);
97 1.1 elric DO1(C,D,A,B,10,17,0xffff5bb1);
98 1.1 elric DO1(B,C,D,A,11,22,0x895cd7be);
99 1.1 elric
100 1.1 elric DO1(A,B,C,D,12,7,0x6b901122);
101 1.1 elric DO1(D,A,B,C,13,12,0xfd987193);
102 1.1 elric DO1(C,D,A,B,14,17,0xa679438e);
103 1.1 elric DO1(B,C,D,A,15,22,0x49b40821);
104 1.1 elric
105 1.1 elric /* Round 2 */
106 1.1 elric
107 1.1 elric DO2(A,B,C,D,1,5,0xf61e2562);
108 1.1 elric DO2(D,A,B,C,6,9,0xc040b340);
109 1.1 elric DO2(C,D,A,B,11,14,0x265e5a51);
110 1.1 elric DO2(B,C,D,A,0,20,0xe9b6c7aa);
111 1.1 elric
112 1.1 elric DO2(A,B,C,D,5,5,0xd62f105d);
113 1.1 elric DO2(D,A,B,C,10,9,0x2441453);
114 1.1 elric DO2(C,D,A,B,15,14,0xd8a1e681);
115 1.1 elric DO2(B,C,D,A,4,20,0xe7d3fbc8);
116 1.1 elric
117 1.1 elric DO2(A,B,C,D,9,5,0x21e1cde6);
118 1.1 elric DO2(D,A,B,C,14,9,0xc33707d6);
119 1.1 elric DO2(C,D,A,B,3,14,0xf4d50d87);
120 1.1 elric DO2(B,C,D,A,8,20,0x455a14ed);
121 1.1 elric
122 1.1 elric DO2(A,B,C,D,13,5,0xa9e3e905);
123 1.1 elric DO2(D,A,B,C,2,9,0xfcefa3f8);
124 1.1 elric DO2(C,D,A,B,7,14,0x676f02d9);
125 1.1 elric DO2(B,C,D,A,12,20,0x8d2a4c8a);
126 1.1 elric
127 1.1 elric /* Round 3 */
128 1.1 elric
129 1.1 elric DO3(A,B,C,D,5,4,0xfffa3942);
130 1.1 elric DO3(D,A,B,C,8,11,0x8771f681);
131 1.1 elric DO3(C,D,A,B,11,16,0x6d9d6122);
132 1.1 elric DO3(B,C,D,A,14,23,0xfde5380c);
133 1.1 elric
134 1.1 elric DO3(A,B,C,D,1,4,0xa4beea44);
135 1.1 elric DO3(D,A,B,C,4,11,0x4bdecfa9);
136 1.1 elric DO3(C,D,A,B,7,16,0xf6bb4b60);
137 1.1 elric DO3(B,C,D,A,10,23,0xbebfbc70);
138 1.1 elric
139 1.1 elric DO3(A,B,C,D,13,4,0x289b7ec6);
140 1.1 elric DO3(D,A,B,C,0,11,0xeaa127fa);
141 1.1 elric DO3(C,D,A,B,3,16,0xd4ef3085);
142 1.1 elric DO3(B,C,D,A,6,23,0x4881d05);
143 1.1 elric
144 1.1 elric DO3(A,B,C,D,9,4,0xd9d4d039);
145 1.1 elric DO3(D,A,B,C,12,11,0xe6db99e5);
146 1.1 elric DO3(C,D,A,B,15,16,0x1fa27cf8);
147 1.1 elric DO3(B,C,D,A,2,23,0xc4ac5665);
148 1.1 elric
149 1.1 elric /* Round 4 */
150 1.1 elric
151 1.1 elric DO4(A,B,C,D,0,6,0xf4292244);
152 1.1 elric DO4(D,A,B,C,7,10,0x432aff97);
153 1.1 elric DO4(C,D,A,B,14,15,0xab9423a7);
154 1.1 elric DO4(B,C,D,A,5,21,0xfc93a039);
155 1.1 elric
156 1.1 elric DO4(A,B,C,D,12,6,0x655b59c3);
157 1.1 elric DO4(D,A,B,C,3,10,0x8f0ccc92);
158 1.1 elric DO4(C,D,A,B,10,15,0xffeff47d);
159 1.1 elric DO4(B,C,D,A,1,21,0x85845dd1);
160 1.1 elric
161 1.1 elric DO4(A,B,C,D,8,6,0x6fa87e4f);
162 1.1 elric DO4(D,A,B,C,15,10,0xfe2ce6e0);
163 1.1 elric DO4(C,D,A,B,6,15,0xa3014314);
164 1.1 elric DO4(B,C,D,A,13,21,0x4e0811a1);
165 1.1 elric
166 1.1 elric DO4(A,B,C,D,4,6,0xf7537e82);
167 1.1 elric DO4(D,A,B,C,11,10,0xbd3af235);
168 1.1 elric DO4(C,D,A,B,2,15,0x2ad7d2bb);
169 1.1 elric DO4(B,C,D,A,9,21,0xeb86d391);
170 1.1 elric
171 1.1 elric A += AA;
172 1.1 elric B += BB;
173 1.1 elric C += CC;
174 1.1 elric D += DD;
175 1.1 elric }
176 1.1 elric
177 1.1 elric /*
178 1.1 elric * From `Performance analysis of MD5' by Joseph D. Touch <touch (at) isi.edu>
179 1.1 elric */
180 1.1 elric
181 1.1 elric #if defined(WORDS_BIGENDIAN)
182 1.1 elric static inline uint32_t
183 1.1 elric swap_uint32_t (uint32_t t)
184 1.1 elric {
185 1.1 elric uint32_t temp1, temp2;
186 1.1 elric
187 1.1 elric temp1 = cshift(t, 16);
188 1.1 elric temp2 = temp1 >> 8;
189 1.1 elric temp1 &= 0x00ff00ff;
190 1.1 elric temp2 &= 0x00ff00ff;
191 1.1 elric temp1 <<= 8;
192 1.1 elric return temp1 | temp2;
193 1.1 elric }
194 1.1 elric #endif
195 1.1 elric
196 1.1 elric struct x32{
197 1.1 elric unsigned int a:32;
198 1.1 elric unsigned int b:32;
199 1.1 elric };
200 1.1 elric
201 1.1.1.1.34.1 snj int
202 1.1 elric MD5_Update (struct md5 *m, const void *v, size_t len)
203 1.1 elric {
204 1.1 elric const unsigned char *p = v;
205 1.1 elric size_t old_sz = m->sz[0];
206 1.1 elric size_t offset;
207 1.1 elric
208 1.1 elric m->sz[0] += len * 8;
209 1.1 elric if (m->sz[0] < old_sz)
210 1.1 elric ++m->sz[1];
211 1.1 elric offset = (old_sz / 8) % 64;
212 1.1 elric while(len > 0){
213 1.1 elric size_t l = min(len, 64 - offset);
214 1.1 elric memcpy(m->save + offset, p, l);
215 1.1 elric offset += l;
216 1.1 elric p += l;
217 1.1 elric len -= l;
218 1.1 elric if(offset == 64){
219 1.1 elric #if defined(WORDS_BIGENDIAN)
220 1.1 elric int i;
221 1.1.1.1.34.1 snj uint32_t swapped[16];
222 1.1 elric struct x32 *us = (struct x32*)m->save;
223 1.1 elric for(i = 0; i < 8; i++){
224 1.1.1.1.34.1 snj swapped[2*i+0] = swap_uint32_t(us[i].a);
225 1.1.1.1.34.1 snj swapped[2*i+1] = swap_uint32_t(us[i].b);
226 1.1 elric }
227 1.1.1.1.34.1 snj calc(m, swapped);
228 1.1 elric #else
229 1.1 elric calc(m, (uint32_t*)m->save);
230 1.1 elric #endif
231 1.1 elric offset = 0;
232 1.1 elric }
233 1.1 elric }
234 1.1.1.1.34.1 snj return 1;
235 1.1 elric }
236 1.1 elric
237 1.1.1.1.34.1 snj int
238 1.1 elric MD5_Final (void *res, struct md5 *m)
239 1.1 elric {
240 1.1 elric unsigned char zeros[72];
241 1.1 elric unsigned offset = (m->sz[0] / 8) % 64;
242 1.1 elric unsigned int dstart = (120 - offset - 1) % 64 + 1;
243 1.1 elric
244 1.1 elric *zeros = 0x80;
245 1.1 elric memset (zeros + 1, 0, sizeof(zeros) - 1);
246 1.1 elric zeros[dstart+0] = (m->sz[0] >> 0) & 0xff;
247 1.1 elric zeros[dstart+1] = (m->sz[0] >> 8) & 0xff;
248 1.1 elric zeros[dstart+2] = (m->sz[0] >> 16) & 0xff;
249 1.1 elric zeros[dstart+3] = (m->sz[0] >> 24) & 0xff;
250 1.1 elric zeros[dstart+4] = (m->sz[1] >> 0) & 0xff;
251 1.1 elric zeros[dstart+5] = (m->sz[1] >> 8) & 0xff;
252 1.1 elric zeros[dstart+6] = (m->sz[1] >> 16) & 0xff;
253 1.1 elric zeros[dstart+7] = (m->sz[1] >> 24) & 0xff;
254 1.1 elric MD5_Update (m, zeros, dstart + 8);
255 1.1 elric {
256 1.1 elric int i;
257 1.1 elric unsigned char *r = (unsigned char *)res;
258 1.1 elric
259 1.1 elric for (i = 0; i < 4; ++i) {
260 1.1 elric r[4*i] = m->counter[i] & 0xFF;
261 1.1 elric r[4*i+1] = (m->counter[i] >> 8) & 0xFF;
262 1.1 elric r[4*i+2] = (m->counter[i] >> 16) & 0xFF;
263 1.1 elric r[4*i+3] = (m->counter[i] >> 24) & 0xFF;
264 1.1 elric }
265 1.1 elric }
266 1.1 elric #if 0
267 1.1 elric {
268 1.1 elric int i;
269 1.1 elric uint32_t *r = (uint32_t *)res;
270 1.1 elric
271 1.1 elric for (i = 0; i < 4; ++i)
272 1.1 elric r[i] = swap_uint32_t (m->counter[i]);
273 1.1 elric }
274 1.1 elric #endif
275 1.1.1.1.34.1 snj return 1;
276 1.1 elric }
277