Lines Matching refs:MD5UINT4

59 static void SDLTest_Md5Transform(MD5UINT4 * buf, const MD5UINT4 * in);
85 {(a) += F ((b), (c), (d)) + (x) + (MD5UINT4)(ac); \
90 {(a) += G ((b), (c), (d)) + (x) + (MD5UINT4)(ac); \
95 {(a) += H ((b), (c), (d)) + (x) + (MD5UINT4)(ac); \
100 {(a) += I ((b), (c), (d)) + (x) + (MD5UINT4)(ac); \
114 mdContext->i[0] = mdContext->i[1] = (MD5UINT4) 0; in SDLTest_Md5Init()
119 mdContext->buf[0] = (MD5UINT4) 0x67452301; in SDLTest_Md5Init()
120 mdContext->buf[1] = (MD5UINT4) 0xefcdab89; in SDLTest_Md5Init()
121 mdContext->buf[2] = (MD5UINT4) 0x98badcfe; in SDLTest_Md5Init()
122 mdContext->buf[3] = (MD5UINT4) 0x10325476; in SDLTest_Md5Init()
134 MD5UINT4 in[16]; in SDLTest_Md5Update()
149 if ((mdContext->i[0] + ((MD5UINT4) inLen << 3)) < mdContext->i[0]) in SDLTest_Md5Update()
151 mdContext->i[0] += ((MD5UINT4) inLen << 3); in SDLTest_Md5Update()
152 mdContext->i[1] += ((MD5UINT4) inLen >> 29); in SDLTest_Md5Update()
165 in[i] = (((MD5UINT4) mdContext->in[ii + 3]) << 24) | in SDLTest_Md5Update()
166 (((MD5UINT4) mdContext->in[ii + 2]) << 16) | in SDLTest_Md5Update()
167 (((MD5UINT4) mdContext->in[ii + 1]) << 8) | in SDLTest_Md5Update()
168 ((MD5UINT4) mdContext->in[ii]); in SDLTest_Md5Update()
182 MD5UINT4 in[16]; in SDLTest_Md5Final()
210 in[i] = (((MD5UINT4) mdContext->in[ii + 3]) << 24) | in SDLTest_Md5Final()
211 (((MD5UINT4) mdContext->in[ii + 2]) << 16) | in SDLTest_Md5Final()
212 (((MD5UINT4) mdContext->in[ii + 1]) << 8) | in SDLTest_Md5Final()
213 ((MD5UINT4) mdContext->in[ii]); in SDLTest_Md5Final()
232 static void SDLTest_Md5Transform(MD5UINT4 * buf, const MD5UINT4 * in) in SDLTest_Md5Transform()
234 MD5UINT4 a = buf[0], b = buf[1], c = buf[2], d = buf[3]; in SDLTest_Md5Transform()