Lines Matching refs:buf
59 static void Transform (u32_t *buf, u32_t *in);
123 mdContext->buf[0] = (u32_t)0x67452301UL;
124 mdContext->buf[1] = (u32_t)0xefcdab89UL;
125 mdContext->buf[2] = (u32_t)0x98badcfeUL;
126 mdContext->buf[3] = (u32_t)0x10325476UL;
167 Transform (mdContext->buf, in);
202 Transform (mdContext->buf, in);
206 mdContext->digest[ii] = (unsigned char)(mdContext->buf[i] & 0xFF);
208 (unsigned char)((mdContext->buf[i] >> 8) & 0xFF);
210 (unsigned char)((mdContext->buf[i] >> 16) & 0xFF);
212 (unsigned char)((mdContext->buf[i] >> 24) & 0xFF);
217 /* Basic MD5 step. Transforms buf based on in.
220 Transform (u32_t *buf, u32_t *in)
222 u32_t a = buf[0], b = buf[1], c = buf[2], d = buf[3];
312 buf[0] += a;
313 buf[1] += b;
314 buf[2] += c;
315 buf[3] += d;