Searched refs:h4 (Results 1 – 1 of 1) sorted by relevance
/crypto/ |
D | poly1305_generic.c | 97 u32 h0, h1, h2, h3, h4; in poly1305_blocks_internal() local 118 h4 = state->h[4]; in poly1305_blocks_internal() 126 h4 += (get_unaligned_le32(src + 12) >> 8) | hibit; in poly1305_blocks_internal() 130 mlt(h3, s2) + mlt(h4, s1); in poly1305_blocks_internal() 132 mlt(h3, s3) + mlt(h4, s2); in poly1305_blocks_internal() 134 mlt(h3, s4) + mlt(h4, s3); in poly1305_blocks_internal() 136 mlt(h3, r0) + mlt(h4, s4); in poly1305_blocks_internal() 138 mlt(h3, r1) + mlt(h4, r0); in poly1305_blocks_internal() 145 h0 += sr(d4, 26) * 5; h4 = and(d4, 0x3ffffff); in poly1305_blocks_internal() 155 state->h[4] = h4; in poly1305_blocks_internal() [all …]
|