| H A D | sm3.c | 41 #define R(i, a, b, c, d, e, f, g, h, t, w1, w2) \ argument 43 ss1 = rol32((rol32((a), 12) + (e) + (t)), 7); \ 46 h += GG ## i(e, f, g) + ss1 + (w1); \ 52 #define R1(a, b, c, d, e, f, g, h, t, w1, w2) \ argument 53 R(1, a, b, c, d, e, f, g, h, t, w1, w2) 54 #define R2(a, b, c, d, e, f, g, h, t, w1, w2) \ argument 55 R(2, a, b, c, d, e, f, g, h, t, w1, w2) 72 ^ rol32(W[(i-13) & 0x0f], 7) \ 77 u32 a, b, c, d, e, f, g, h, ss1, ss2; in sm3_transform() local 83 e = sctx->state[4]; in sm3_transform() [all …]
|