Select one of the symbols to view example projects that use it.
 
Outline
...
...
...
...
#include "nx_api.h"
#include "nx_md5.h"
#define F
#define G
#define H
#define I
#define LEFT_SHIFT_CIRCULAR
_nx_md5_padding
...
...
_nx_md5_initialize(NX_MD5 *)
...
...
_nx_md5_update(NX_MD5 *, UCHAR *, UINT)
...
...
_nx_md5_digest_calculate(NX_MD5 *, UCHAR *)
...
...
_nx_md5_process_buffer(NX_MD5 *, UCHAR *)
Files
loading...
CodeScopeSTM32 Libraries and Samplesnetxduocommon/src/nx_md5.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************************************************************/ /* */ /* Copyright (c) Microsoft Corporation. All rights reserved. */ /* */ /* This software is licensed under the Microsoft Software License */ /* Terms for Microsoft Azure RTOS. Full text of the license can be */ /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ /* and in the root directory of this software. */ /* */... /**************************************************************************/ /**************************************************************************/ /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All rights reserved. License to copy and use this software is granted provided that it is identified as the ""RSA Data Security, Inc. MD5 Message-Digest Algorithm"" in all material mentioning or referencing this software or this function. License is also granted to make and use derivative works provided that such works are identified as ""derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm"" in all material mentioning or referencing the derived work. RSA Data Security, Inc. makes no representations concerning either the merchantability of this software or the suitability of this software for any particular purpose. It is provided ""as is"" without express or implied warranty of any kind. These notices must be retained in any copies of any part of this documentation and/or software. *//* ... */ .../**************************************************************************/ /**************************************************************************/ /**************************************************************************/ /** */ /** NetX Component */ /** */ /** MD5 Digest Algorithm (MD5) */ /** */... /**************************************************************************/ /**************************************************************************/ #include "nx_api.h" #include "nx_md5.h" /* Define macros for the MD5 transform function. */ /* Define the MD5 basic F, G, H and I functions. */ #define F(x, y, z) (((x) & (y)) | ((~x) & (z))) #define G(x, y, z) (((x) & (z)) | ((y) & (~z))) #define H(x, y, z) ((x) ^ (y) ^ (z)) #define I(x, y, z) ((y) ^ ((x) | (~z))) /* Define the MD5 left shift circular function. */ #define LEFT_SHIFT_CIRCULAR(x, n) (((x) << (n)) | ((x) >> (32-(n)))) /* Define the MD5 complex FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4. */ #define FF(a, b, c, d, x, s, ac) { \ (a) += F ((b), (c), (d)) + (x) + (ULONG)(ac); \ (a) = LEFT_SHIFT_CIRCULAR ((a), (s)); \ (a) += (b); \ ...}... #define GG(a, b, c, d, x, s, ac) { \ (a) += G ((b), (c), (d)) + (x) + (ULONG)(ac); \ (a) = LEFT_SHIFT_CIRCULAR ((a), (s)); \ (a) += (b); \ ...}... #define HH(a, b, c, d, x, s, ac) { \ (a) += H ((b), (c), (d)) + (x) + (ULONG)(ac); \ (a) = LEFT_SHIFT_CIRCULAR ((a), (s)); \ (a) += (b); \ ...}... #define II(a, b, c, d, x, s, ac) { \ (a) += I ((b), (c), (d)) + (x) + (ULONG)(ac); \ (a) = LEFT_SHIFT_CIRCULAR ((a), (s)); \ (a) += (b); \ ...}... 9 defines /* Define the padding array. This is used to pad the message such that its length is 64 bits shy of being a multiple of 512 bits long. *//* ... */ UCHAR _nx_md5_padding[64] = {0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _nx_md5_initialize PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Yuxin Zhou, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function initializes the MD5 context. It must be called prior */ /* to creating the MD5 digest. */ /* */ /* INPUT */ /* */ /* context MD5 context pointer */ /* */ /* OUTPUT */ /* */ /* status Completion status */ /* */ /* CALLS */ /* */ /* None */ /* */ /* CALLED BY */ /* */ /* NetX Applications */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 Yuxin Zhou Initial Version 6.0 */ /* 09-30-2020 Yuxin Zhou Modified comment(s), */ /* resulting in version 6.1 */ /* */... /**************************************************************************/ UINT _nx_md5_initialize(NX_MD5 *context) { /* Determine if the context is non-null. */ if (context == NX_NULL) return(NX_PTR_ERROR); /* First, clear the bit count for this context. */ context -> nx_md5_bit_count[0] = 0; /* Clear the lower 32-bits of the count */ context -> nx_md5_bit_count[1] = 0; /* Clear the upper 32-bits of the count */ /* Finally, setup the context states. */ context -> nx_md5_states[0] = 0x67452301UL; /* Setup state A */ context -> nx_md5_states[1] = 0xEFCDAB89UL; /* Setup state B */ context -> nx_md5_states[2] = 0x98BADCFEUL; /* Setup state C */ context -> nx_md5_states[3] = 0x10325476UL; /* Setup state D */ /* Return success. */ return(NX_SUCCESS); }{ ... } ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _nx_md5_update PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Yuxin Zhou, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function updates the digest calculation with new input from */ /* the caller. */ /* */ /* INPUT */ /* */ /* context MD5 context pointer */ /* input_ptr Pointer to byte(s) of input */ /* input_length Length of bytes of input */ /* */ /* OUTPUT */ /* */ /* status Completion status */ /* */ /* CALLS */ /* */ /* _nx_md5_process_buffer Process complete buffer, */ /* which is 64-bytes in size */ /* */ /* CALLED BY */ /* */ /* NetX Applications */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 Yuxin Zhou Initial Version 6.0 */ /* 09-30-2020 Yuxin Zhou Modified comment(s), and */ /* verified memcpy use cases, */ /* resulting in version 6.1 */ /* */... /**************************************************************************/ UINT _nx_md5_update(NX_MD5 *context, UCHAR *input_ptr, UINT input_length) { ULONG current_bytes; ULONG needed_fill_bytes; /* Determine if the context is non-null. */ if (context == NX_NULL) return(NX_PTR_ERROR); /* Determine if there is a length. */ if (input_length == 0) return(NX_SUCCESS); /* Calculate the current byte count mod 64. Note the reason for the shift by 3 is to account for the 8 bits per byte. *//* ... */ current_bytes = (context -> nx_md5_bit_count[0] >> 3) & 0x3F; /* Calculate the current number of bytes needed to be filled. */ needed_fill_bytes = 64 - current_bytes; /* Update the total bit count based on the input length. */ context -> nx_md5_bit_count[0] += (input_length << 3); /* Determine if there is roll-over of the bit count into the MSW. */ if (context -> nx_md5_bit_count[0] < (input_length << 3)) { /* Yes, increment the MSW of the bit count. */ context -> nx_md5_bit_count[1]++; }if (context -> nx_md5_bit_count[0] < (input_length << 3)) { ... } /* Update upper total bit count word. */ context -> nx_md5_bit_count[1] += (input_length >> 29); /* Check for a partial buffer that needs to be transformed. */ if ((current_bytes) && (input_length >= needed_fill_bytes)) { /* Yes, we can complete the buffer and transform it. */ /* Copy the appropriate portion of the input buffer into the internal buffer of the context. *//* ... */ memcpy((void *) &(context -> nx_md5_buffer[current_bytes]), (void *) input_ptr, needed_fill_bytes); /* Use case of memcpy is verified. */ /* Process the 64-byte (512 bit) buffer. */ _nx_md5_process_buffer(context, context -> nx_md5_buffer); /* Adjust the pointers and length accordingly. */ input_length = input_length - needed_fill_bytes; input_ptr = input_ptr + needed_fill_bytes; /* Clear the remaining bits, since the buffer was processed. */ current_bytes = 0; }if ((current_bytes) && (input_length >= needed_fill_bytes)) { ... } /* Process any and all whole blocks of input. */ while (input_length >= 64) { /* Process this 64-byte (512 bit) buffer. */ _nx_md5_process_buffer(context, input_ptr); /* Adjust the pointers and length accordingly. */ input_length = input_length - 64; input_ptr = input_ptr + 64; }while (input_length >= 64) { ... } /* Determine if there is anything left. */ if (input_length) { /* Save the remaining bytes in the internal buffer after any remaining bytes that it is processed later. *//* ... */ memcpy((void *) &(context -> nx_md5_buffer[current_bytes]), (void *) input_ptr, input_length); /* Use case of memcpy is verified. */ }if (input_length) { ... } /* Return success. */ return(NX_SUCCESS); }{ ... } ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _nx_md5_digest_calculate PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Yuxin Zhou, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function finishes calculation of the MD5 digest. It is called */ /* where there is no further input needed for the digest. The resulting*/ /* 16-byte (128-bit) MD5 digest is returned to the caller. */ /* */ /* INPUT */ /* */ /* context MD5 context pointer */ /* digest 16-byte (128-bit) digest */ /* */ /* OUTPUT */ /* */ /* status Completion status */ /* */ /* CALLS */ /* */ /* _nx_md5_update Update the digest with padding*/ /* and length of digest */ /* */ /* CALLED BY */ /* */ /* NetX Applications */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 Yuxin Zhou Initial Version 6.0 */ /* 09-30-2020 Yuxin Zhou Modified comment(s), */ /* resulting in version 6.1 */ /* */... /**************************************************************************/ UINT _nx_md5_digest_calculate(NX_MD5 *context, UCHAR digest[16]) { UCHAR bit_count_string[8]; ULONG current_byte_count; ULONG padding_bytes; /* Move the lower portion of the bit count into the array. */ bit_count_string[0] = (UCHAR) context -> nx_md5_bit_count[0]; bit_count_string[1] = (UCHAR) (context -> nx_md5_bit_count[0] >> 8); bit_count_string[2] = (UCHAR) (context -> nx_md5_bit_count[0] >> 16); bit_count_string[3] = (UCHAR) (context -> nx_md5_bit_count[0] >> 24); bit_count_string[4] = (UCHAR) context -> nx_md5_bit_count[1]; bit_count_string[5] = (UCHAR) (context -> nx_md5_bit_count[1] >> 8); bit_count_string[6] = (UCHAR) (context -> nx_md5_bit_count[1] >> 16); bit_count_string[7] = (UCHAR) (context -> nx_md5_bit_count[1] >> 24); /* Calculate the current byte count. */ current_byte_count = (context -> nx_md5_bit_count[0] >> 3) & 0x3F; /* Calculate the padding bytes needed. */ padding_bytes = (current_byte_count < 56) ? (56 - current_byte_count) : (120 - current_byte_count); /* Add any padding required. */ _nx_md5_update(context, _nx_md5_padding, padding_bytes); /* Add the in the length. */ _nx_md5_update(context, bit_count_string, 8); /* Now store the digest in the caller specified destination. */ digest[ 0] = (UCHAR) context -> nx_md5_states[0]; digest[ 1] = (UCHAR) (context -> nx_md5_states[0] >> 8); digest[ 2] = (UCHAR) (context -> nx_md5_states[0] >> 16); digest[ 3] = (UCHAR) (context -> nx_md5_states[0] >> 24); digest[ 4] = (UCHAR) context -> nx_md5_states[1]; digest[ 5] = (UCHAR) (context -> nx_md5_states[1] >> 8); digest[ 6] = (UCHAR) (context -> nx_md5_states[1] >> 16); digest[ 7] = (UCHAR) (context -> nx_md5_states[1] >> 24); digest[ 8] = (UCHAR) context -> nx_md5_states[2]; digest[ 9] = (UCHAR) (context -> nx_md5_states[2] >> 8); digest[10] = (UCHAR) (context -> nx_md5_states[2] >> 16); digest[11] = (UCHAR) (context -> nx_md5_states[2] >> 24); digest[12] = (UCHAR) context -> nx_md5_states[3]; digest[13] = (UCHAR) (context -> nx_md5_states[3] >> 8); digest[14] = (UCHAR) (context -> nx_md5_states[3] >> 16); digest[15] = (UCHAR) (context -> nx_md5_states[3] >> 24); /* Return successful completion. */ return(NX_SUCCESS); }{ ... } ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _nx_md5_process_buffer PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Yuxin Zhou, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function actually uses the MD5 algorithm to process a 64-byte */ /* (512 bit) buffer. */ /* */ /* INPUT */ /* */ /* context MD5 context pointer */ /* buffer 64-byte buffer */ /* */ /* OUTPUT */ /* */ /* None */ /* */ /* CALLS */ /* */ /* None */ /* */ /* CALLED BY */ /* */ /* NetX Applications */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 Yuxin Zhou Initial Version 6.0 */ /* 09-30-2020 Yuxin Zhou Modified comment(s), */ /* resulting in version 6.1 */ /* */... /**************************************************************************/ VOID _nx_md5_process_buffer(NX_MD5 *context, UCHAR buffer[64]) { UINT i, j; ULONG a, b, c, d; ULONG x[16]; /* Initialize the state variables. */ a = context -> nx_md5_states[0]; b = context -> nx_md5_states[1]; c = context -> nx_md5_states[2]; d = context -> nx_md5_states[3]; /* Now, setup the x array of ULONGs for fast processing. */ j = 0; for (i = 0; i < 16; i++) { /* Convert 4 bytes into one 32-bit word. */ x[i] = ((ULONG) buffer[j]) | (((ULONG) buffer[j+1]) << 8) | (((ULONG) buffer[j+2]) << 16) | (((ULONG) buffer[j+3]) << 24); /* Move to next position in source array. */ j = j + 4; }for (i = 0; i < 16; i++) { ... } /* Process Round 1 of MD5 calculation. */ FF(a, b, c, d, x[ 0], 7, 0xd76aa478UL); FF(d, a, b, c, x[ 1], 12, 0xe8c7b756UL); FF(c, d, a, b, x[ 2], 17, 0x242070dbUL); FF(b, c, d, a, x[ 3], 22, 0xc1bdceeeUL); FF(a, b, c, d, x[ 4], 7, 0xf57c0fafUL); FF(d, a, b, c, x[ 5], 12, 0x4787c62aUL); FF(c, d, a, b, x[ 6], 17, 0xa8304613UL); FF(b, c, d, a, x[ 7], 22, 0xfd469501UL); FF(a, b, c, d, x[ 8], 7, 0x698098d8UL); FF(d, a, b, c, x[ 9], 12, 0x8b44f7afUL); FF(c, d, a, b, x[10], 17, 0xffff5bb1UL); FF(b, c, d, a, x[11], 22, 0x895cd7beUL); FF(a, b, c, d, x[12], 7, 0x6b901122UL); FF(d, a, b, c, x[13], 12, 0xfd987193UL); FF(c, d, a, b, x[14], 17, 0xa679438eUL); FF(b, c, d, a, x[15], 22, 0x49b40821UL); /* Process Round 2 of MD5 calculation. */ GG(a, b, c, d, x[ 1], 5, 0xf61e2562UL); GG(d, a, b, c, x[ 6], 9, 0xc040b340UL); GG(c, d, a, b, x[11], 14, 0x265e5a51UL); GG(b, c, d, a, x[ 0], 20, 0xe9b6c7aaUL); GG(a, b, c, d, x[ 5], 5, 0xd62f105dUL); GG(d, a, b, c, x[10], 9, 0x02441453UL); GG(c, d, a, b, x[15], 14, 0xd8a1e681UL); GG(b, c, d, a, x[ 4], 20, 0xe7d3fbc8UL); GG(a, b, c, d, x[ 9], 5, 0x21e1cde6UL); GG(d, a, b, c, x[14], 9, 0xc33707d6UL); GG(c, d, a, b, x[ 3], 14, 0xf4d50d87UL); GG(b, c, d, a, x[ 8], 20, 0x455a14edUL); GG(a, b, c, d, x[13], 5, 0xa9e3e905UL); GG(d, a, b, c, x[ 2], 9, 0xfcefa3f8UL); GG(c, d, a, b, x[ 7], 14, 0x676f02d9UL); GG(b, c, d, a, x[12], 20, 0x8d2a4c8aUL); /* Process Round 3 of MD5 calculation. */ HH(a, b, c, d, x[ 5], 4, 0xfffa3942UL); HH(d, a, b, c, x[ 8], 11, 0x8771f681UL); HH(c, d, a, b, x[11], 16, 0x6d9d6122UL); HH(b, c, d, a, x[14], 23, 0xfde5380cUL); HH(a, b, c, d, x[ 1], 4, 0xa4beea44UL); HH(d, a, b, c, x[ 4], 11, 0x4bdecfa9UL); HH(c, d, a, b, x[ 7], 16, 0xf6bb4b60UL); HH(b, c, d, a, x[10], 23, 0xbebfbc70UL); HH(a, b, c, d, x[13], 4, 0x289b7ec6UL); HH(d, a, b, c, x[ 0], 11, 0xeaa127faUL); HH(c, d, a, b, x[ 3], 16, 0xd4ef3085UL); HH(b, c, d, a, x[ 6], 23, 0x04881d05UL); HH(a, b, c, d, x[ 9], 4, 0xd9d4d039UL); HH(d, a, b, c, x[12], 11, 0xe6db99e5UL); HH(c, d, a, b, x[15], 16, 0x1fa27cf8UL); HH(b, c, d, a, x[ 2], 23, 0xc4ac5665UL); /* Process Round 4 of MD5 calculation. */ II(a, b, c, d, x[ 0], 6, 0xf4292244UL); II(d, a, b, c, x[ 7], 10, 0x432aff97UL); II(c, d, a, b, x[14], 15, 0xab9423a7UL); II(b, c, d, a, x[ 5], 21, 0xfc93a039UL); II(a, b, c, d, x[12], 6, 0x655b59c3UL); II(d, a, b, c, x[ 3], 10, 0x8f0ccc92UL); II(c, d, a, b, x[10], 15, 0xffeff47dUL); II(b, c, d, a, x[ 1], 21, 0x85845dd1UL); II(a, b, c, d, x[ 8], 6, 0x6fa87e4fUL); II(d, a, b, c, x[15], 10, 0xfe2ce6e0UL); II(c, d, a, b, x[ 6], 15, 0xa3014314UL); II(b, c, d, a, x[13], 21, 0x4e0811a1UL); II(a, b, c, d, x[ 4], 6, 0xf7537e82UL); II(d, a, b, c, x[11], 10, 0xbd3af235UL); II(c, d, a, b, x[ 2], 15, 0x2ad7d2bbUL); II(b, c, d, a, x[ 9], 21, 0xeb86d391UL); /* Save the resulting in this MD5 context. */ context -> nx_md5_states[0] += a; context -> nx_md5_states[1] += b; context -> nx_md5_states[2] += c; context -> nx_md5_states[3] += d; }{ ... }