H A D | rmd160.c | 16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 80 #define R(a, b, c, d, e, Fj, Kj, sj, rj) \ argument 82 a = ROL(sj, a + Fj(b,c,d) + X(rj) + Kj) + e; \ 161 uint32_t a, b, c, d, e, aa, bb, cc, dd, ee, t, x[16]; in RMD160Transform() local 172 a = state[0]; in RMD160Transform() 179 R(a, b, c, d, e, F0, K0, 11, 0); in RMD160Transform() 180 R(e, a, b, c, d, F0, K0, 14, 1); in RMD160Transform() 181 R(d, e, a, b, c, F0, K0, 15, 2); in RMD160Transform() 182 R(c, d, e, a, b, F0, K0, 12, 3); in RMD160Transform() 183 R(b, c, d, e, a, F0, K0, 5, 4); in RMD160Transform() [all …]
|