Searched defs:F1 (Results 1 - 1 of 1) sorted by relevance

/bind-9.11.3/lib/isc/
H A Dmd5.c164 /*! The four core functions - F1 is optimized somewhat */
166 /* #define F1(x, y, z) (x & y | ~x & z) */
167 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
168 #define F2(x, y, z) F1(z, x, y)
191 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
192 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
193 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
194 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
195 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
196 MD5STEP(F1,
[all...]

Completed in 10 milliseconds