MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / MD5Transform

Function MD5Transform

md5.c:197–283  ·  view source on GitHub ↗

MD5 basic transformation. Transforms state based on block. */

Source from the content-addressed store, hash-verified

195/* MD5 basic transformation. Transforms state based on block.
196 */
197static void MD5Transform (UINT4 state[4], const unsigned char block[64])
198{
199 UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
200
201 Decode (x, block, 64);
202
203 /* Round 1 */
204 FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */
205 FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */
206 FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */
207 FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */
208 FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */
209 FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */
210 FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */
211 FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 */
212 FF (a, b, c, d, x[ 8], S11, 0x698098d8); /* 9 */
213 FF (d, a, b, c, x[ 9], S12, 0x8b44f7af); /* 10 */
214 FF (c, d, a, b, x[10], S13, 0xffff5bb1); /* 11 */
215 FF (b, c, d, a, x[11], S14, 0x895cd7be); /* 12 */
216 FF (a, b, c, d, x[12], S11, 0x6b901122); /* 13 */
217 FF (d, a, b, c, x[13], S12, 0xfd987193); /* 14 */
218 FF (c, d, a, b, x[14], S13, 0xa679438e); /* 15 */
219 FF (b, c, d, a, x[15], S14, 0x49b40821); /* 16 */
220
221 /* Round 2 */
222 GG (a, b, c, d, x[ 1], S21, 0xf61e2562); /* 17 */
223 GG (d, a, b, c, x[ 6], S22, 0xc040b340); /* 18 */
224 GG (c, d, a, b, x[11], S23, 0x265e5a51); /* 19 */
225 GG (b, c, d, a, x[ 0], S24, 0xe9b6c7aa); /* 20 */
226 GG (a, b, c, d, x[ 5], S21, 0xd62f105d); /* 21 */
227 GG (d, a, b, c, x[10], S22, 0x2441453); /* 22 */
228 GG (c, d, a, b, x[15], S23, 0xd8a1e681); /* 23 */
229 GG (b, c, d, a, x[ 4], S24, 0xe7d3fbc8); /* 24 */
230 GG (a, b, c, d, x[ 9], S21, 0x21e1cde6); /* 25 */
231 GG (d, a, b, c, x[14], S22, 0xc33707d6); /* 26 */
232 GG (c, d, a, b, x[ 3], S23, 0xf4d50d87); /* 27 */
233 GG (b, c, d, a, x[ 8], S24, 0x455a14ed); /* 28 */
234 GG (a, b, c, d, x[13], S21, 0xa9e3e905); /* 29 */
235 GG (d, a, b, c, x[ 2], S22, 0xfcefa3f8); /* 30 */
236 GG (c, d, a, b, x[ 7], S23, 0x676f02d9); /* 31 */
237 GG (b, c, d, a, x[12], S24, 0x8d2a4c8a); /* 32 */
238
239 /* Round 3 */
240 HH (a, b, c, d, x[ 5], S31, 0xfffa3942); /* 33 */
241 HH (d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */
242 HH (c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */
243 HH (b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */
244 HH (a, b, c, d, x[ 1], S31, 0xa4beea44); /* 37 */
245 HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */
246 HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60); /* 39 */
247 HH (b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */
248 HH (a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */
249 HH (d, a, b, c, x[ 0], S32, 0xeaa127fa); /* 42 */
250 HH (c, d, a, b, x[ 3], S33, 0xd4ef3085); /* 43 */
251 HH (b, c, d, a, x[ 6], S34, 0x4881d05); /* 44 */
252 HH (a, b, c, d, x[ 9], S31, 0xd9d4d039); /* 45 */
253 HH (d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */
254 HH (c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */

Callers 1

MD5UpdateFunction · 0.85

Calls 2

DecodeFunction · 0.85
MD5_memsetFunction · 0.85

Tested by

no test coverage detected