H A D | md4c.c | 50 #define S23 9 53 #define S32 9 79 /* FF, GG and HH are transformations for rounds 1, 2 and 3 */ 81 #define FF(a, b, c, d, x, s) { \ macro 193 FF (a, b, c, d, x[ 0], S11); /* 1 */ in MD4Transform() 194 FF (d, a, b, c, x[ 1], S12); /* 2 */ in MD4Transform() 195 FF (c, d, a, b, x[ 2], S13); /* 3 */ in MD4Transform() 196 FF (b, c, d, a, x[ 3], S14); /* 4 */ in MD4Transform() 197 FF (a, b, c, d, x[ 4], S11); /* 5 */ in MD4Transform() 198 FF (d, a, b, c, x[ 5], S12); /* 6 */ in MD4Transform() [all …]
|